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