[问题已处理]-nginx报错403 CSRF check failed
wiki使用的是tomcat8090端口通过nginx转发之后 发现有些界面打不开post出现了403CSRF check failed但是通过8090直接端口访问就没有问题解决办法在解析规则下加上proxy_set_header Host $http_host;proxy_set_header X-Real-IP $remote_addr;proxy_set_heade...
·
wiki使用的是tomcat8090端口
通过nginx转发之后 发现有些界面打不开 post出现了403 CSRF check failed
但是通过8090直接端口访问就没有问题
解决办法
在解析规则下加上
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
配置如下所示
nginx 重新reload之后 可以正常访问了
可参考
https://blog.csdn.net/qq_42050903/article/details/89018139
更多推荐
已为社区贡献4条内容
所有评论(0)