安装nginx|Ubuntu

1.安装
更新本地包装索引,然后安装nginx:

sudo apt update
sudo apt install nginx

2.调整防火墙
输入以下内容列出所有应用程序的防火墙配置:

sudo ufw app list
sudo ufw allow 'Nginx HTTP'

3.查看运行状态

systemctl status nginx

4.管理Nginx流程
停止Web服务器:

sudo systemctl stop nginx

启动Web服务器:

sudo systemctl start nginx

重启服务:

sudo systemctl restart nginx

更改配置,Nginx通常可以在不断开连接的情况下重新加载:

sudo systemctl reload nginx

禁用自启:

sudo systemctl disable nginx

允许自启:

sudo systemctl enable nginx

卸载

sudo apt-get remove nginx nginx-common
sudo apt-get purge nginx nginx-common
sudo apt-get autoremove
sudo apt-get remove nginx* --purge

你可能感兴趣的:(安装nginx|Ubuntu)