Files
WanderQ-MiniAPP2.0/docker/admin.nginx.conf
2026-07-24 16:47:07 +08:00

18 lines
365 B
Plaintext

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location = /index.html {
add_header Cache-Control "no-cache, no-store, must-revalidate" always;
add_header Pragma "no-cache" always;
add_header Expires "0" always;
}
location / {
try_files $uri $uri/ /index.html;
}
}