0
我採用了最基本的nginx.conf示例,並嘗試在html文件中添加no-cache控件。嘗試了我找到的一切,似乎沒有任何工作。這是我目前的配置文件無論nginx配置如何緩存Html文件
user nobody;
worker_processes 3;
pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
server {
listen 80;
listen [::]:80;
location/{
location ~\/.+ {
root /var/www;
index index.html index.htm;
}
location ~* \.html$ {
expires -1;
}
}
}
}
我的問題是我在做什麼錯是因爲nginx還是因爲別的東西?