我在带有 Rails 服务器的 CentOS 上使用 Nginx。我对如何设置标题感到困惑。如果 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 标头的标头?
由于该正则表达式中的错误,您的标题未设置。删除第一次出现的
$
. 仅当有一行正好在此位置结束时,包含的正则表达式$
才会匹配。关于标题覆盖。这不像相同的标头来自浏览器,通过服务器并返回到同一个浏览器 - 这是没有意义的。
有请求标头- 它们来自浏览器,您可以在传递到应用服务器之前在 nginx 中覆盖这些标头。(主要例子:
Host
,Accept
,User-Agent
)。还有响应头- 它们是由应用服务器创建的,您可以在将响应传递给浏览器之前在 nginx 中覆盖这些头。(这包括
Expires
等)