diff --git a/etc/nginx.conf b/etc/nginx.conf index 2fc55a29..3e43c756 100644 --- a/etc/nginx.conf +++ b/etc/nginx.conf @@ -34,12 +34,14 @@ http { server { listen 80 default_server; server_name _; - - root /var/www; + index index.html; autoindex on; - try_files $uri $uri/ $uri.html =404; + + location /archive { + root /var/www/archive; + } } }