源服务器: 103.25.199.246 源域名: mkt.guticn.com
代理服务器 IP: x.x.x 代理域名: mkt.guticn.com
求反向代理 mkt.guticn.com 的正确配置。不代理,可以正常访问 https://mkt.guticn.com/onebook?WebSkinType=2 ,但是反向代理后,切换“大陆版”,一直有 400 错误,无法正常访问, 不知道有没有大神知道是什么原因,小师弟困扰了几个月了。。。
1
234747005 2016-09-01 12:02:43 +08:00
server {
listen 80; server_name 代理域名; charset UFT-8; #access_log logs/日志.access.log off; location / { proxy_pass http://源 URL; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } |
2
hopewinn OP 这么简单的话就不在这里发了,希望大神们抽空看看,。
|