Files
doormile_crm_build/nginx.conf

12 lines
264 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# This line forces Nginx to pass routing back to React Router
try_files $uri $uri/ /index.html;
}
}