首頁 > 後端開發 > php教程 > NGINX學習筆記-傳遞請求頭

NGINX學習筆記-傳遞請求頭

WBOY
發布: 2016-07-29 08:56:16
原創
1219 人瀏覽過

原文網址:https://www.nginx.com/resources/admin-guide/reverse-proxy/
原文標題:Passing Request Headers


預設情況,NGINX在代理請求時會重新定義兩個HTTP頭字段,“Host”和“Connection”,並刪除值為空的頭部字段。 「Host」會被設定為 $proxy_host變數的值,「Connection」被設定為close。
By default, NGINX redefines two header fields in proxied requests, “Host” and “Connection”, and eliminates the header fields whose values are empty strings. “Host” is set to the $proxy_host variable, and “Connection”is is Connection to Connection” .

要改變這些設置,包括修改其他頭字段,使用proxy_set_header指令。這個指令可以在location或更高層使用。也可以在特定的server上下文或在http區塊中,例如:
To change these setting, as well as modify other header fields, use the proxy_set_header directive. This directive can be specified in a location or higher. It can also be specified in a particular server context or in the br.

在這個設定中,「Host」欄位被設定為

$host變數。 In this configuration the “Host” field is set to the $host variable.

要阻止一個頭字段被傳遞給被代理的伺服器,只要把它設定為空字串。

To prevent a header field from being passed to the proxied server, set it to an empty string as follows:

<code>location /some/path<span>/</span> {
    proxy_set_header Host <span>$host</span>;
    proxy_set_header X<span>-Real</span><span>-IP</span><span>$remote_addr</span>;
    proxy_pass http:<span>//localhost:8000;</span>
}</code>
登入後複製
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); }); 以上就介紹了NGINX學習筆記——傳遞請求頭,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板