当前位置:Gxlcms > PHP教程 > nginx反向代理到特定网站

nginx反向代理到特定网站

时间:2021-07-01 10:21:17 帮助过:15人阅读

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教程有兴趣的朋友有所帮助。

人气教程排行