Files
planilla/ui/nginx.conf
josedario87 d685fb7ff7
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
agregada configuracion nginx para UI para que acepte variables de entorno
2025-06-09 16:39:43 -06:00

17 lines
285 B
Nginx Configuration File

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';
}
}