在 Ubuntu 上安装和配置 Nginx 是相对简单的。以下是一个逐步指南:
1. 更新系统包
首先,确保你的系统是最新的。打开终端并运行:
sudo apt update
sudo apt upgrade
2. 安装 Nginx
使用以下命令安装 Nginx:
sudo apt install nginx
3. 启动 Nginx 服务
安装完成后,启动 Nginx:
sudo systemctl start nginx
4. 设置 Nginx 开机自启
要确保 Nginx 在系统启动时自动运行,执行:
sudo systemctl enable nginx
5. 配置防火墙
如果你的服务器上启用了 UFW(Uncomplicated Firewall),需要允许 Nginx 的 HTTP 和 HTTPS 流量:
sudo ufw allow 'Nginx Full'
6. 检查 Nginx 状态
确认 Nginx 正在运行:
sudo systemctl status nginx
7.通过页面访问
默认为80端口
8.Nginx常用命令
cd /usr/local/nginx/sbin
./nginx 启动
./nginx -s stop 停止
./nginx -s quit 安全退出
./nginx -s reload 重新加载配置文件
ps aux| grep nginx 查看nginx进程