10 lines
243 B
Plaintext
10 lines
243 B
Plaintext
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
# Esta línea es crucial para que las rutas de React (SPA) funcionen
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |