From 95438e40924491b1593391a58ab33a984316de9c Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Wed, 26 Jun 2019 03:59:20 -0600 Subject: [PATCH] fix nginx example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 87b7403..4b19efd 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,10 @@ I almost exclusively use NGINX, so I'll be assuming you do too in the following ```nginx # error pages error_page 400 /errorpages/400.html; -error_page 401 /errorpages/400.html; -error_page 403 /errorpages/400.html; -error_page 404 /errorpages/400.html; -error_page 500 502 503 504 /errorpages/400.html; +error_page 401 /errorpages/401.html; +error_page 403 /errorpages/403.html; +error_page 404 /errorpages/404.html; +error_page 500 502 503 504 /errorpages/50x.html; location ~ ^/errorpages { root /usr/share/nginx/html;