diff --git a/nginx.conf b/nginx.conf index 048080e..e009534 100644 --- a/nginx.conf +++ b/nginx.conf @@ -8,24 +8,6 @@ server { # Serve the index page by default index index.html; - # Explicit location for /mongo-ops/ - location /mongo-ops/ { - root /usr/share/nginx/html; - index index.html; - } - - # Explicit location for /api/blog/ - location /api/blog/ { - root /usr/share/nginx/html; - index index.html; - } - - # Explicit location for /tutorials/ - location /tutorials/ { - root /usr/share/nginx/html; - index index.html; - } - # Optional: serve static assets (CSS, JS, images) location / { try_files $uri $uri/ /index.html;