Compare commits

...

2 commits

12 changed files with 11 additions and 26 deletions

View file

@ -1,13 +0,0 @@
server {
listen 443 ssl;
server_name social.suesity.vlw.se;
include snippets/suesity.vlw.se-ssl;
location / {
client_max_body_size 16M;
proxy_pass http://localhost:8007;
}
}

View file

View file

@ -1,13 +0,0 @@
server {
listen 443 ssl;
server_name blob.vlw.se;
include snippets/vlw.se-ssl;
location / {
client_max_body_size 16M;
proxy_pass http://localhost:8008;
}
}

View file

View file

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