Files
vegasco/src/Vegasco-Web/webserver.conf.template
ThompsonNye 8d4ae30224
All checks were successful
continuous-integration/drone/push Build is passing
Just go with one environment variable
2025-06-28 16:54:14 +02:00

12 lines
224 B
Plaintext

server {
listen 80;
location ~ ^/api/(.*) {
proxy_pass ${apiUrl}/${DOLLAR}1;
}
location / {
root /usr/share/nginx/html;
try_files ${DOLLAR}uri ${DOLLAR}uri/ /index.html =404;
}
}