Failover Service

This commit is contained in:
2026-04-25 12:22:20 +03:00
parent 1adf39749d
commit 23ccc9aacc
5 changed files with 150 additions and 102 deletions

View File

@@ -0,0 +1,13 @@
server {
listen 80 default_server;
root /usr/share/nginx/html;
location / {
return 503;
}
error_page 503 /503.html;
location = /503.html {
internal;
}
}