tutorials/media-manager #1

Merged
aetos merged 14 commits from tutorials/media-manager into main 2025-11-20 17:37:19 +00:00
2 changed files with 7 additions and 0 deletions
Showing only changes of commit 2c47e40dd4 - Show all commits

View File

@@ -13,6 +13,7 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY ./_index /usr/share/nginx/html/
COPY ./mongo-ops/site /usr/share/nginx/html/mongo-ops/
COPY ./blog-api/site /usr/share/nginx/html/api/blog/
COPY ./tutorials/media-manager/site /usr/share/nginx/html/tutorials/media-manager
# Expose HTTP port
EXPOSE 80

View File

@@ -20,6 +20,12 @@ server {
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;