关于 nginx 反向代理和 express-session 无法获取到值的问题
我用 nginx 反向代理绑定了域名,但是无论如何发现存储不了session ,后来查出来原因是因为,通过反向代理访问 connect.sid 每次访问都会变,从而一直获取不到,求大神解惑啊。困扰好几天了
express 配置
app.set('trust proxy', 1); // trust first proxy
app.use(session({
name:"DWlive",
resave: true,
sameSite:'false',
saveUninitialized: true,
secret: 'this word key'
}));
nginx 配置
server
{
listen 80;
server_name watchlive.dongweinet.com;
index index.php index.html index.htm default.php default.htm default.html;
root /www/wwwroot/watchlive.dongweinet.com;
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#error_page 404/404.html;
#SSL-END
#ERROR-PAGE-START 错误页配置,可以注释、删除或修改
error_page 404 /404.html;
error_page 502 /502.html;
#ERROR-PAGE-END
location /
{
proxy_pass http://211.149.207.217:250;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-Proto true;
#缓存相关配置
proxy_cache cache_one;
proxy_cache_key $host$request_uri$is_args$args;
proxy_cache_valid 200 304 301 302 1h;
add_header X-Cache $upstream_cache_status;
expires 12h;
}
#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论