diff --git a/nginx.conf b/nginx.conf index 2e57dc53..77282e65 100644 --- a/nginx.conf +++ b/nginx.conf @@ -2,8 +2,11 @@ server { listen 80; server_name _; + root /var/www/maxun; + index index.html; + + # Serve the frontend location / { - root /usr/share/nginx/html; try_files $uri $uri/ /index.html; }