WIP: Add "site under maintenance" config #3

Draft
vlw wants to merge 1 commit from feat/maintenance into master
Showing only changes of commit 95563313d6 - Show all commits

View file

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