我正在AWS机器上的linux ubuntu 12.04上运行nginx,而且我的生产服务器上一直出现奇怪的“缓存”(?)问题。当我部署新的.css,.html,.js代码 - 一些文件更新,而其他文件没有,我得到一个奇怪的混合行为。 (例如,应用程序工作奇怪,等等)如果我要求我的用户重置他们的缓存(本地),一切正常。我想找出一种不必要求用户这样做的方法!
我尝试更改nginx配置设置,以便为我的静态文件获取“304”或“未修改”响应 - 即使我尝试关闭缓存,并尝试关注如何关闭缓存的各种stackoverflow帖子。 / p>
有没有人对可能出现的问题有任何想法?到目前为止我的猜测是 - 也许它是特定的东西(虽然我试图关闭sendfile),或者我的其他设置之一是否重写?
我试过.. How to prevent "304 Not Modified" in nginx? How to clear the cache of nginx? How to disable nginx cache https://serverfault.com/questions/269420/disable-caching-when-serving-static-files-with-nginx-for-development
尝试关闭sendfile; sendfile on;设置“无缓存”以及设置缓存并使其在1s到期..(并在配置文件更改之间运行“sudo service nginx restart”) - 但仍然没有运气。每一次,无论如何 - 我一直得到“304 - 文件没有修改” 头;和我的用户
我的(完整)当前配置:
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
add_header Cache-Control no-cache;
sendfile off; # Virtualbox Issue
expires 0s;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
在我的/ sites-enabled /文件夹中,
upstream app_server {
server XX.XX.XX.XX:XXXX fail_timeout=0;
}
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://app_server;
break;
}
}
# Virtualbox & Nginx Issues
sendfile off;
# Set the cache to expire - always (no caching)
location ~* \.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|xml|html|htm)$ {
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
expires 1s;
}
有什么想法吗?
非常感谢!!