Nginx Header,實現對HTTP/S請求、響應進行添加、修改、刪除等操做

Nginx Header,實現對HTTP/S請求、響應進行添加、修改、刪除等操做javascript

經過Nginx內置

文檔地址:php

http://nginx.org/en/docs/http/ngx_http_headers_module.htmlcss

http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_hide_headerhtml

http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_hide_headerjava

 

[可選]支持容許下劃線Headernginx

underscores_in_headers on;git

添加Header

來源庫:http_headers_modulegithub

add_header 'Key' 'values';跨域

Syntax: add_header name value [always];
Default:
Context: httpserverlocationif in location

例如:add_header 'Content-Type' 'text/html;charset=utf-8';服務器

關於 add_header 無效不起做用,通常是沒有在最後一條匹配規則中進行操做,須要將其加入到最深層的匹配規則中,例如location 比 server 深,if 比 location 深。

 

刪除Header

來源庫:ngx_http_fastcgi_module、ngx_http_proxy_module

fastcgi_hide_header 'Key';

Syntax: fastcgi_hide_header field;
Default:
Context: httpserverlocation

proxy_hide_header 'Key';

Syntax: proxy_hide_header field;
Default:
Context: httpserverlocation

例如:反向代理和fastcgi區分不一樣的場景使用。

fastcgi_hide_header X-Powered-By;

proxy_hide_header X-Powered-By;

 

修改Header

經過內置的操做,修改header分爲兩步,先將其刪除再增長。

例如:

fastcgi_hide_header Content-Type;

proxy_hide_header Content-Type;

add_header 'Content-Type' 'text/css';

 

添加請求Header

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

fastcgi_param  'HTTP-X-Forwarded-For' $remote_addr;

刪除請求Header

proxy_set_header X-Forwarded-For '';

fastcgi_param  'HTTP-X-Forwarded-For' '';

 

經過第三方模塊

headers-more-nginx-module

Github:https://github.com/openresty/headers-more-nginx-module

添加/設置Header

syntax: more_set_headers [-t <content-type list>]... [-s <status-code list>]... <new-header>...

default: no

context: http, server, location, location if

phase: output-header-filter

more_set_headers "Server: yunjiasu-nginx";

清除Header

syntax: more_clear_headers [-t <content-type list>]... [-s <status-code list>]... <new-header>...

default: no

context: http, server, location, location if

phase: output-header-filter

more_clear_headers -s 404 -t 'text/plain' Foo Baz;

more_clear_headers 'X-Hidden-*';

 

添加請求Header

more_set_input_headers

syntax: more_set_input_headers [-r] [-t <content-type list>]... <new-header>...

default: no

context: http, server, location, location if

phase: rewrite tail

刪除請求Header

more_clear_input_headers

syntax: more_clear_input_headers [-t <content-type list>]... <new-header>...

default: no

context: http, server, location, location if

phase: rewrite tail

例子:

more_clear_input_headers -t 'text/plain' Foo Baz;

more_clear_input_headers "Foo" "Baz";
more_clear_input_headers 'X-Hidden-*';

 

綜合案例

例如:

# 根據請求文件名,返回對應的 Content-Type
if ( $request_uri ~ .*\.(css)$ ) {
	add_header 'Content-Type' 'text/css';
}

if ( $request_uri ~ .*\.(html|htm|php|php5)$ ) {
	add_header 'Content-Type' 'text/html;charset=utf-8';
}

if ( $request_uri ~ .*\.(js)$ ) {
	add_header 'Content-Type' 'application/javascript;application/x-javascript';
}

# 隱藏腳本版本及服務器版本信息
fastcgi_hide_header X-Powered-By;
fastcgi_hide_header Server;

# 僞造服務器應用版本信息
more_set_headers 'Server: yunjiasu-nginx/1.0';

# 容許跨域請求
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Headers X-Requested-With;
add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
相關文章
相關標籤/搜索