add custom 502 error page

This commit is contained in:
2026-01-20 17:13:19 +01:00
parent 885bfe08eb
commit 83d6fe194b
5 changed files with 93 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
server {
listen 8090;
server_name localhost;
error_page 502 /502.html;
location / {
root /usr/share/nginx/error-pages;
}
}