0

我有 nginx 设置来面对一个 python 粘贴实例。它们在同一个盒子上,粘贴从 127.0.0.1 和 nginx 服务到外部世界。

当我的 python 应用程序设置 cookie 时,问题就出现了,域与 localhost 保持一致,使 cookie 无用。显然我不是第一个遇到这个问题的人,但是我很难找到标准的解决方案?

4

1 回答 1

1

The proxy_cookie_domain directive is exists exactly for this case.

But it most likely that you do not pass the Host header.

proxy_set_header Host $host;

http://nginx.org/r/proxy_set_header

于 2012-11-28T04:03:45.120 回答