2024-09-21
nginx是常用的web服务器,替代的web服务器还有apache。
nginx -t
sudo find / -name nginx.conf
意思是从根目录/开始查找nginx.conf文件。
sudo apt update
sudo apt-get install nginx
需要先更新apt-get,然后再安装nginx。
sudo yum install epel-release
sudo yum install nginx
Nginx不包含在默认的仓库中,所以你需要添加EPEL仓库。
sudo systemctl start nginx
sudo systemctl enable nginx
sudo systemctl status nginx
sudo nginx -t
sudo systemctl restart nginx
这里的restart是重启,reload是重新加载配置文件。实践下来,两者差不多。