2.查看nginx配置文件路径
使用nginx的 -t 参数进行配置检查,即可知道实际调用的配置文件路径及是否调用有效
service nginx reload 重新载入nginx配置
三、测试nginx
启动nginx
service nginx restart 重启
systemctl start nginx
设置开机启动
systemctl enable nginx
查看nginx 启动状态
systemctl status nginx
查看是否监听
ss -tnl | grep 80
LISTEN 0 128 :80 :
LISTEN 0 128 :::80 :::
测试 nginx
在浏览器中输入 nginx 服务器的ip 地址
备注:如果不能正常访问,关闭防火墙
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
firewall-cmd --state #查看默认防火墙状态(关闭后显示notrunning,开启后显示running)