Adjustments for working deployment
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-06-24 19:12:29 +02:00
parent f6dbf489ad
commit 8681247e76
4 changed files with 20 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
server {
listen 80;
location ~ ^/api/(.*) {
proxy_pass ${services__Vegasco_Server_Api__https__0}/$1;
}
location / {
root /usr/share/nginx/html;
try_files ${DOLLAR}uri ${DOLLAR}uri/ /index.html =404;
}
}