salix/front/nginx.conf

19 lines
343 B
Nginx Configuration File
Raw Normal View History

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