我对博客进行了反向代理。它托管在 Apache 的子域名 blog.example.com 下。在 Nginx 中,我在服务器块中进行了以下配置。
一切正常,只是 WP 管理面板的 cookie 没有传递,所以我无法登录。
我应该添加什么?
location /blog/ {
proxy_set_header X-Original-Host $host;
proxy_set_header X-Is-Reverse-Proxy "true";
proxy_pass_header Set-Cookie;
proxy_cookie_path / /blog/;
proxy_pass http://blog.example.com/;
}
谢谢!