22 lines
276 B
Nginx Configuration File
Raw Permalink Normal View History

2025-06-14 16:17:43 +08:00
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
2025-06-16 18:57:59 +08:00
## html不缓存
if ($request_filename ~* .*\.(htm|html)$)
{
add_header Cache-Control "no-store";
}
2025-06-14 16:17:43 +08:00
}
2025-06-16 18:57:59 +08:00
}