nginx响应不考虑conf设置

时间:2013-10-03 15:38:15

标签: nginx

我的conf for nginx在我的http块中有以下设置:

gzip on;
server_tokens off;
add_header X-Frame-Options Deny;
expires 1s;

使用Chrome的开发控制台(F12)时,我的回复中没有一个实际占用。

我的回复标题是:

Connection:keep-alive
Date:Thu, 03 Oct 2013 15:36:25 GMT
ETag:"524d8e2a-55"
Last-Modified:Thu, 03 Oct 2013 15:32:58 GMT
Server:nginx/1.4.2

我在Windows上运行" nginx -s reload"命令。

1 个答案:

答案 0 :(得分:0)

要解决您的问题,请将X-Frame-Options行移至您设置了其他add_headers的范围。

如果在位置范围内有add_header,Nginx将忽略http中的add_header。