我正在尝试在我的应用中使用HTTP_IF_MODIFIED_SINCE标头来确定资源是否陈旧/新鲜,并在这些情况下呈现200/304。 在我的开发环境中,一切正常,但我不能为我的生活让它在生产中工作。
我正在使用Passenger 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;
}
}
答案 0 :(得分:1)
要使用包含下划线的非标准头文件,请在nginx.conf文件中的http或服务器块内执行此操作:
underscores_in_headers on;
ignore_invalid_headers off;
并在服务器块中:
proxy_pass_header HTTP_IF_MODIFIED_SINCE
如果您有需要处理的旧HTTP标头,并且包含下划线,则此功能非常有用。
答案 1 :(得分:0)
毕竟这是一个用户错误。我以错误的格式(IF_MODIFIED_SINCE
而非If-Modified-Since
)将标头发送到应用。在确定之后,它没有任何额外的指令。