Centos 7 搭建 Nginx服务器

vi /etc/yum.repo.d/nginx.repo #创建repo

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1 
保存退出

yum install nginx -y #yum安装nginx

防火墙设置

firewall-cmd --zone=public --add-service=http --permanent     #添加规则
firewall-cmd --reload         #重新加载防火墙

Nginx服务配置

systemctl start nginx         #启动nginx服务
systemctl enable nginx     #启动自启
systemctl stop  nginx         #关闭服务

你可能感兴趣的:(Centos 7 搭建 Nginx服务器)