Files
Chatbot-ElDia/chatbot-widget/nginx.conf

15 lines
350 B
Nginx Configuration File
Raw Normal View History

2025-11-20 12:39:23 -03:00
# 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;
}
}