Files
moadiran/TaxPayerFull/default.conf
mmrbnjd 4df6c87012 docker
2025-10-03 23:30:01 +03:30

22 lines
486 B
Plaintext

server {
listen 8084;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:ico|css|js|gif|jpe?g|png|woff2?|eot|ttf|svg)$ {
expires 6M;
access_log off;
add_header Cache-Control "public";
}
location = /index.html {
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
}
}