赞
踩
最近遇到了一个问题,接口用户拦截过滤的信息(token信息扔到header中处理)在本地或测试环境上面跑是没有问题的,但是切换到正式服务器上面,却没有获取到header里面的token信息,导致无法执行用户相关操作,问题仔细排查了一下,发现开发人员由于跟前端、移动端开发人员对接或用本地模拟请求的时候习惯用http ip去模拟请求,而正式服务器器却是用https,初步考虑一下,可能是nginx并没有去设置header,尝试了一下在nginx配置文件里面加上
underscores_in_headers on;,还真可以了,随手记一下,代码配置如下
upstream smart.https.com {
server 127.0.0.1:8089;
}
server {
listen 443 ssl;
server_name smart-test.wlsq.tv;
underscores_in_headers on;
ssl on;
ssl_certificate cert/214334856970273.pem;
ssl_certificate_key cert/214334856970273.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://smart.https.com;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。