我们已经在nginx.conf
相当长的一段时间内拥有此设置。
sendfile on;
当我们更新了文件/js/main.js
并从浏览器https://test.com/js/main.js?newrandomtimestamp访问时,除非我们从浏览器进行完全刷新(清除缓存),否则它仍将加载旧版本。
但是,当我们从sendfile更改设置时;发送文件;浏览器将加载正确版本的更新文件。
对于我们的生产Web服务器,是否应该在sendfile上使用;或sendfile关闭;?如果sendfile开启;是必需的(可能是因为更好的缓存吗?性能更快?)然后如何解决上述问题?
以下是nginx.conf
我们生产服务器中的,我们正在使用1.7.5版:
user nginx;
worker_processes 2;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
worker_rlimit_nofile 51200;
events {
use epoll;
worker_connections 51200;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
client_max_body_size 8m;
sendfile on;
keepalive_timeout 65;
real_ip_header X-Forwarded-For;
set_real_ip_from 0.0.0.0/0;
large_client_header_buffers 4 32k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript application/javascript text/css application/xml application/json;
gzip_vary on;
include /etc/nginx/conf.d/*.conf;
}
sendfile
VirtualBox驱动器有一些错误报告(例如,virtualbox.org/ticket/819)。亚马逊可能存在类似问题。