server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
autoindex off;
client_max_body_size 250M;
root /salix/dist;
error_page 404 = @notfound;
location @notfound {
return 302 /;
}
location / {
autoindex on;