This commit is contained in:
Didier Slof 2023-02-19 15:11:44 +01:00
parent 77bb8de20c
commit 9e42053523
Signed by: didier
GPG key ID: 01E71F18AA4398E5
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}