nginx: send all requests to a single html page

I think this will do it for you:

location / {
    try_files /base.html =404;
}

Leave a Comment