1、yum install nginx -y#安装nginx 根据提示输入y进行安装
2、chkconfig nginx on#设置nginx开机启动
3、service nginx start
启动的时候会报下边的错误
Starting nginx: nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)
[FAILED]
进入nginx目录,cd /etc/nginx/conf.d/
编辑配置文件 vim default.conf
修改监听端口为80,服务器名字设置为ip地址
在浏览器访问ip地址,显示Welcome tonginxon EPEL!
nginx配置完毕