centos7系统库中默认是没有nginx的rpm包的,所以我们自己需要先更新下rpm依赖库
(1)使用yum安装nginx需要包括Nginx的库,安装Nginx的库
(2)使用下面命令安装nginx
#yum install nginx
(3)启动Nginx
#service nginx start
或
#systemctl start nginx.service
原文作者: blog.csdn.net/li_yong_kuan
参考链接:
Nginx安装指导: http://nginx.org/en/linux_packages.html
其它blog :http://blog.hexu.org/archives/2047.shtml
原文地址:http://blog.csdn.net/li_yong_kuan/article/details/45666523