vim nginx.conf
将server_name改为服务器ip地址
如果有多个就新建多个
我这里是存放在
data/www
data/world
data/china
data/image
这四个中
:wq
./nginx -s reload
nginx的默认端口是80,我们需要在防火墙中开放这个端口
命令如下
查看开放的端口号
firewall-cmd --list-all
设置开放的端口号:firewall-cmd --add-service=端口号/tcp –permanent
firewall-cmd --add-port=80/tcp --permanent
重启防火墙
firewall-cmd –reload
启动nginx 进入到sbin目录 执行 ./nginx启动
[root@ecs-218164 sbin]# ./nginx
[root@ecs-218164 sbin]# ps -ef | grep nginx
root 30388 1 0 17:05 ? 00:00:00 nginx: master process ./nginx
nobody 30389 30388 0 17:05 ? 00:00:00 nginx: worker process
root 30391 22627 0 17:05 pts/0 00:00:00 grep --color=auto nginx