2018-02-03 19:14:44 +00:00
|
|
|
|
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;
|
2018-02-03 19:14:44 +00:00
|
|
|
|
2019-02-01 10:46:54 +00:00
|
|
|
root /salix/dist;
|
2018-02-03 19:14:44 +00:00
|
|
|
|
2019-02-01 10:46:54 +00:00
|
|
|
location / {
|
2018-12-27 15:10:55 +00:00
|
|
|
autoindex on;
|
|
|
|
}
|
2020-01-29 13:43:15 +00:00
|
|
|
location /index.html {
|
|
|
|
expires -1;
|
|
|
|
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
|
|
|
}
|
2018-02-03 19:14:44 +00:00
|
|
|
}
|