1. 首先Nginx官网找到最新的稳定版本,网站地址:http://nginx.org/en/linux_packages.html#stable
在/etc/yum.repos.d 下面创建一个文件名:nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/ #OS 要替换对应的操作系统版本 如centos7
gpgcheck=
enabled=
2. 在线安装nginx
yum install nginx
3. 创建服务启动
systemctl enable nginx.service
4. 启动nginx
service nginx start
5. 查看服务器端口80 是否开启
netstat -ntlp #如果端口80 被监听 说明服务已经启动