Feat: Ajustes y Preparación Docker

This commit is contained in:
2025-11-20 12:39:23 -03:00
parent c94936d56e
commit 1e85b2ed86
11 changed files with 317 additions and 56 deletions

15
chatbot-admin/nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
# nginx.conf
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
# Si un archivo o directorio no existe, redirige al index.html
# Esto es esencial para que el enrutamiento del lado del cliente de React funcione.
try_files $uri $uri/ /index.html;
}
}