技术解析
给自己国内网站用了个的美国 vps 来反代。
也都是用的 https。
网站是 wordpress 的,在反代那边注册、登录都可以显示成功了。
但是无限返回登录页面,实际在源站查看,也是没有新用户注册的。
对反代不太懂,问下 nginx 反代是不能实现注册、登录等操作的吗?
如果可以要怎么写?
我现在的反代规则:
location / {
sub_filter www.test.com cs.test.com; #网站域名,美国服务器反代域名
sub_filter_once off;
proxy_cache_key "$scheme://$host$request_uri";
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.test.com;
proxy_set_header Host www.test.com;
proxy_pass http://www.test.com;
proxy_set_header Accept-Encoding "";
}