1

我正在尝试在我的应用程序中使用 HTTP_IF_MODIFIED_SINCE 标头来确定资源是否过时/新鲜并在这些情况下呈现 200/304。在我的开发环境中,一切正常,但我一生都无法让它在生产中工作。

我正在使用乘客 3.0.11 和 Nginx 1.0.13。

正如你在下面看到的,我尝试了proxy_pass_header、proxy_set_header、passenger_pass_header 和passenger_set_cgi_param。最后一个实际上设置了 HTTP_IF_MODIFIED_SINCE 标头,但它是空的...任何帮助/想法将不胜感激!

我的配置:

server {
  listen             80 default_server;
  root               /home/rails/myapp/current/public;
  passenger_enabled  on;
  charset            utf-8;

  proxy_pass_header If-Modified-Since;
  proxy_set_header If-Modified-Since $http_if_modified_since;
  passenger_pass_header If-Modified-Since;
  passenger_set_cgi_param HTTP_IF_MODIFIED_SINCE $http_if_modified_since;

  if (-f $document_root/system/maintenance.html) {
    rewrite ^(.*)$ /system/maintenance.html break;
  }

  location ~ \.(aspx|jsp|cgi)$ {
    return 410;
  }

  location ~ ^/(assets)/ {
    # http://guides.rubyonrails.org/asset_pipeline.html#server-configuration
    # gzip_static on;
    expires     1y;
    add_header  Cache-Control public;

    add_header Last-Modified "";
    add_header ETag "";
    break;
  }
}
4

2 回答 2

1

要使其与包含下划线的非标准标头一起使用,请在 nginx.conf 文件中的 http 或 server 块中执行此操作:

underscores_in_headers on;
ignore_invalid_headers off;

在服务器块中:

proxy_pass_header HTTP_IF_MODIFIED_SINCE

如果您有需要处理的旧 HTTP 标头并且包含下划线,这将很有用。

于 2012-09-14T04:05:17.520 回答
0

毕竟这是一个用户错误。IF_MODIFIED_SINCE我以错误的格式(而不是)将标头发送到应用程序If-Modified-Since。修复后,它在没有任何额外指令的情况下工作。

于 2012-04-19T05:37:15.087 回答