nginx在centos7.3下的部署

nginx在centos7.3下的部署,第1张

nginx在centos7.3下的部署

具体步骤:

(推荐教程:nginx教程)

1、下载”epel-release”

wget http://dl.Fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

2、安装”epel-release”软件包

rpm -ivh epel-release-latest-7.noarch.rpm

3、yum安装nginx

yum install nginx

4、启动nginx

systemctl start nginx

5、关闭nginx

systemctl start nginx

6、刷新nginx配置(无需重启nginx)

nginx -s reload

7、nginx配置

配置文件路径:/etc/nginx/nginx.conf

注意事项:

(1)

upstream alias{
        server localhost:port;
    }

此处配置服务

(2)

location / {
        proxy_pass http://alias;
    }

(3)

(1)和(2)alias保持一致

以上就是nginx在centos7.3下的部署的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/707814.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-24
下一篇 2022-04-24

发表评论

登录后才能评论

评论列表(0条)

保存