From 9e42053523da4529bf86c2887ece7ca4b88eb92e Mon Sep 17 00:00:00 2001 From: faulty Date: Sun, 19 Feb 2023 15:11:44 +0100 Subject: [PATCH] test 3 --- custom/proxy/config/error_pages/{503.html => 50x.html} | 0 custom/proxy/config/nginx.conf | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename custom/proxy/config/error_pages/{503.html => 50x.html} (100%) diff --git a/custom/proxy/config/error_pages/503.html b/custom/proxy/config/error_pages/50x.html similarity index 100% rename from custom/proxy/config/error_pages/503.html rename to custom/proxy/config/error_pages/50x.html diff --git a/custom/proxy/config/nginx.conf b/custom/proxy/config/nginx.conf index 4f7f327..c972614 100644 --- a/custom/proxy/config/nginx.conf +++ b/custom/proxy/config/nginx.conf @@ -34,8 +34,8 @@ http { server_name _; # This is just an invalid value which will never trigger on a real hostname. listen 80; access_log /var/log/nginx/access.log vhost; - error_page 503 /503.html; - location = /503.html { + error_page 503 /50x.html; + location = /50x.html { root /usr/share/nginx/html; internal; }