Heim >Backend-Entwicklung >PHP-Tutorial >nginx反向代理到特定网站

nginx反向代理到特定网站

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-29 09:03:581347Durchsuche

laopo单位需要常查询组织机构代码,但是她们单位的ip被人家屏蔽了,为了laopo查询方便,特在阿里服务器上配置了一个反向代理,按如下配置即可成功。

server

    {

        listen 80;

        #listen [::]:80;

        server_name laopo.xxxxx.net;

        index index.html index.htm index.php default.html default.htm default.php;

        root  /home/wwwroot/laopo.xxxxx.net;

       location / {

      proxy_set_header X-Real-IP $remote_addr;

      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

      proxy_set_header Referer http://www.nacao.org.cn;

       proxy_set_header Host www.nacao.org.cn;

      proxy_pass http://125.35.63.8/; #被代理网站的IP地址

      proxy_set_header Accept-Encoding "";

       }

?        access_log  /home/wwwlogs/laopo.xxxxx.net.log  access;

    }

以上就介绍了nginx反向代理到特定网站,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn