Files
www.cialloo.com/nginx.conf

15 lines
284 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Handle React Router - serve index.html for all routes
location / {
try_files $uri $uri/ /index.html;
}
# Error pages
error_page 404 /index.html;
}