nginx add_header在我的某个位置无效

我使用Nginx 1.10.1配置与此类似:

server {

    (...)

    add_header Header1 "value";

    (...)

    # in this location above add_header directive works
    location / {
         uwsgi_pass unix:/var/run/some.sock;

         (...)
    }

    # ..and it this one it doesn't!
    location ~* (^/$|favicon.ico|robots.txt) {
        return 204;
        expires 24h;
        add_header Cache-Control "public";
        etag on;
    }
}

..所以我的问题是Header1是为第一个位置处理的请求设置的,而不是第二个位置处理的请求.

为什么?

我已经阅读了add_header文档,并且知道它默认只用于“肯定”返回代码,但204是其中之一(我实际上已经测试过将代码更改为200,404并没有帮助).

(我也试着总是添加到我的add_header Header1 ……但这是一个相当绝望的尝试,因为它不应该帮助 – 而且它没有.)

最佳答案
The documentation州:

These directives are inherited from the prevIoUs level if and only if
there are no add_header directives defined on the current level

add_header Cache-Control“public”的存在;防止该块继承add_header Header1“value”;.

相关文章

一、Linux下Nginx的安装 1.去官网 http://nginx.org/download/下载对应的Nginx安装包,推荐使...
一、空格:默认匹配、普通匹配 location / { root /home; } 二、= :精确匹配(表示匹配到 /home/resou...
``` nginx -c 配置文件路径 ``` ``` /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.con...
前言 nginx可所谓是如今最好用的软件级别的负载均衡了。通过nginx的高性能,并发能力强,占用内存下的特...
1.ngnix概念 Nginx是一款高性能的http 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器。由俄...
博客园从今天上午就开始报502错误 , 他的原因还不知道 , 暂时先说下我们遇到502的排查情况 最大的可能性...