feat: add virtual host for blob.vlw.se

This commit is contained in:
Victor Westerlund 2024-10-31 13:16:52 +01:00
parent 423bed3490
commit 2af6728069

13
sites-available/8008 Normal file
View file

@ -0,0 +1,13 @@
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;
}
}