第三方介面接入的時候,需要新增授權請求頭,但是在使用nginx轉發的時候,請求頭丟失導致一些請求無法訪問。
解決方法:
修改http模組,在模組中加入:
underscores_in_headers on;
預設配置中,underscores_in_headers 是 off,關閉狀態;
在location模組中加入:
location /{ proxy_set_header Host $http_host; }
第三方介面接入的時候,需要新增授權請求頭,但是在使用nginx轉發的時候,請求頭丟失導致一些請求無法訪問。
解決方法:
修改http模組,在模組中加入:
underscores_in_headers on;
預設配置中,underscores_in_headers 是 off,關閉狀態;
在location模組中加入:
location /{ proxy_set_header Host $http_host; }