nginx在centos7.3下的部署

王林
王林转载
2020-08-26 16:04:012088浏览

具体步骤:

(推荐教程: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保持一致

e726ffcdc626232c6f4fb3e479ead69.png

以上就是nginx在centos7.3下的部署的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:csdn,如有侵犯,请联系admin@php.cn删除