From 2cfaf79d7fbaf919e3885fee51e02b6151855c47 Mon Sep 17 00:00:00 2001 From: gcornut Date: Fri, 30 Oct 2020 12:19:17 +0100 Subject: [PATCH] chore(site-demo): fix 404 nginx configuration --- .docker/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/nginx.conf b/.docker/nginx.conf index 22eb87ea5..f45265d98 100644 --- a/.docker/nginx.conf +++ b/.docker/nginx.conf @@ -30,7 +30,7 @@ http { location / { root /var/www; index index.html; - try_files $uri /404.html =404; + error_page 404 /404.html; } } }