哪些标头优先——由 Nginx 还是应用程序服务器设置的标头?

哪些标头优先——由 Nginx 还是应用程序服务器设置的标头?

我在 CentOS 上使用 Nginx 和 Rails 服务器。我对如何设置标头感到困惑。如果 Nginx 设置标头和应用程序服务器(本例中为 Ruby on Rails),哪一个会胜出?我有这个 Nginx 服务器块

server {
  listen 80;
  server_name www.example.com;
  root /home/rails/scale_production/public; # I assume your app is located at this location

  location / {
    proxy_pass http://scale; # match the name of upstream directive which is defined above
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    if ($request_uri ~* "($\/image\/.*)|(.*\.(ico|gif|jpe?g|png)$)") {
      expires 60d;
      access_log off;
      add_header Pragma public;
      add_header Cache-Control "public";
      break;
    }
  }

  location ~* ^/assets/ {
    # Per RFC2616 - 1 year maximum expiry
    expires 1y;
    add_header Cache-Control public;

    # Some browsers still send conditional-GET requests if there's a
    # Last-Modified header or an ETag header even if they haven't
    # reached the expiry date sent in the Expires header.
    add_header Last-Modified "";
    add_header ETag "";
    break;
  }

但是,当我调用与我的正则表达式之一匹配的 URL 时,我没有看到缓存标头被设置......

localhost:tmp davea$ curl -I "http://www.example.com/people/image/27"
HTTP/1.1 200 OK
Server: nginx/1.12.2
Date: Sat, 03 Mar 2018 18:20:43 GMT
Content-Type: image/jpeg; charset=binary
Connection: keep-alive
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Expires: Sun, 03 Mar 2019 18:20:43 GMT
Content-Disposition: inline; filename="Bill Smith"
Content-Transfer-Encoding: binary
Cache-Control: private
ETag: W/"b0c3f986a9c7f967e58733702e71a395"
X-Request-Id: 2f9728bb-3b6f-4d67-9344-afc1e29cacd5
X-Runtime: 0.007781

所以我想知道为什么会发生这种情况。我在块中做错了什么吗?还是我的应用程序服务器中设置的标头覆盖了 Nginx 标头?

答案1

由于该正则表达式中的错误,您的标题未设置。删除第一次出现的$。包含 的正则表达式$仅在有一行恰好在此位置结尾时才会匹配。

关于报头覆盖。这不像是相同的报头来自浏览器,通过服务器并返回到同一个浏览器 - 这没有意义。

请求标头- 它们来自浏览器,您可以在传递到应用服务器之前在 nginx 中覆盖它们。(主要示例:、、Host)。AcceptUser-Agent

还有响应标头- 它们是由应用服务器创建的,您可以在将响应传递给浏览器之前在 nginx 中覆盖它们。(这包括Expires等)

相关内容