agregada configuracion nginx para UI para que acepte variables de entorno
All checks were successful
build-and-deploy / filter (push) Successful in 2s
build-and-deploy / build (push) Successful in 11s
build-and-deploy / deploy (push) Successful in 44s

This commit is contained in:
2025-06-09 16:39:43 -06:00
parent 0fa6ff9fba
commit d685fb7ff7

16
ui/nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /config.js {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Content-Type' 'application/javascript';
}
}