feat: add maintenance site

This commit is contained in:
Victor Westerlund 2025-01-20 14:06:41 +01:00
parent f5da28fede
commit 2bb9ffebab

View file

@ -0,0 +1,11 @@
server {
listen 8000;
server_name _;
root /var/www/maintenance;
location / {
try_files /index.html =404;
}
}