centos7安装nginx

安装
rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
yum install -y nginx
nginx常用命令
#检测nginx配置是否正常
nginx -t
#重启
systemctl restart nginx
#停止
systemctl stop nginx
#开机启动
systemctl enable nginx