Nginx

安装与配置

yum install nginx

安装成功之后 默认路径为/usr/share/nginx/html/
nginx.conf 路径为/etc/nginx/nginx.conf
如果需要增加站点则进行修改配置

Nginx_第1张图片
image.png

启动nginx

nginx
##或者
systemctl start nginx.service

可能会出现端口被占用的情况 nginx启动失败

netstat -lnp | grep 80 ##nginx默认为80端口
kill xxxx ##杀掉编号为xxxx的进程
nginx
##或者
systemctl start nginx.service ##启动nginx

浏览器访问网址查看结果
如果还是无法访问 就是防火墙问题

systemctl stop iptables.service //关闭iptables防火墙
systemctl stop firewalld.service //关闭系统防火墙

完成


Nginx_第2张图片
image.png

你可能感兴趣的:(Nginx)