gpt4 book ai didi

linux - 在 Debian Wheezy Web 服务器上禁用文件缓存

转载 作者:太空宇宙 更新时间:2023-11-04 10:53:13 25 4
gpt4 key购买 nike

我有一个运行 Web 服务器的 Debian Wheezy 服务器。我的网站根目录下有一个名为 data 的文件夹,其中包含几个不经常更新的 json 文件。

上传和显示我的文件不是问题。但是,如果文件被更新或删除,网络服务器仍会提供已上传文件的陈旧信息,或提供已从硬盘中物理删除的文件。

我已经尝试过 Nginx 和 Apache2,但问题仍然存在,所以可能是 Debian 本身的某种形式的缓存?

有没有办法只显示当前在我的 data 目录中的内容而不文件缓存?

虚拟主机配置,nginx

server {
root /var/www;
index index.html index.htm;

server_name localhost;

location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}

location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}

# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;
#}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root /usr/share/nginx/www;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
# fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}

最佳答案

尝试将以下内容添加到您的服务器 block

location ~* \.(?:json)$ {
expires -1;
}

并使用 nginx -s reload 重启 nginx

这应该禁用所有 .json 文件的缓存

关于linux - 在 Debian Wheezy Web 服务器上禁用文件缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29909096/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com