解决nginx反向代理验证码不显示的方法
先看代码
1
2
3
4
5
6
7
8
9
10
11
12
location / {
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:9090;
proxy_read_timeout 120;
proxy_send_timeout 120;
}
上面的代码会导致验证码无法正确显示
正确的代码应该是下面的
1
2
3
4
5
6
7
8
9
10
11
12
location ~ / {
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:9090;
proxy_read_timeout 120;
proxy_send_timeout 120;
}
💘 相关文章
- nginx反向代理配置演示,包括静态资源处理,百分百成功
- 免费的Nginx 代理,管理器面板
- 基于golang的开源图片代理转换程序-imgproxy
- Configure nginx to only allow cloudflare's IP to connect to the server shell script
- 比较简单实用高效的网站防止灌水和反爬虫方案
- Cloudflare放弃使用谷歌的reCAPTCHA验证码服务
- Debian系统出现 "gpg: command not found"的解决方法
- cloudflare 524的解决方法
- nginx安全设置之-限制IP来源只能为cloudflare
- nginx禁止执行php脚本