Eliminar nginx.conf

This commit is contained in:
Pablo Pérez Arcas 2026-03-30 08:29:54 +00:00
parent e542f4eff8
commit 61a6383e12

View File

@ -1,16 +0,0 @@
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://backend:5000/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}