salix/front/nginx.conf

19 lines
275 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;
2019-02-01 08:47:52 +00:00
error_page 404 = @notfound;
2019-02-01 10:06:23 +00:00
location @notfound {
2019-02-01 08:47:52 +00:00
return 302 /;
}
location / {
2018-12-27 15:10:55 +00:00
autoindex on;
}
}