diff --git a/nginx.conf b/nginx.conf index fd4472f..6c15e10 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,10 +1,10 @@ server { listen 80; + index index.html; + root /usr/share/nginx/html; - location / { - root /usr/share/nginx/html; - index index.html index.htm; - try_files $uri $uri/ /index.html =404; + location /account { + alias /usr/share/nginx/html/; } include /etc/nginx/extra-conf.d/*.conf;