salix/front/nginx.conf

19 lines
343 B
Nginx Configuration File

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
autoindex off;
client_max_body_size 250M;
root /salix/dist;
location / {
autoindex on;
}
location /index.html {
expires -1;
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
}
}