tutorials/media-manager (#1)
Some checks reported errors
continuous-integration/drone/push Build was killed

Reviewed-on: #1
This commit is contained in:
2025-11-20 17:37:18 +00:00
parent 1de9490540
commit 52c756e052
86 changed files with 18171 additions and 6 deletions

View File

@@ -14,12 +14,18 @@ server {
index index.html;
}
# Explicit location for /mongo-ops/
# 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;