feat: add service blob.vlw.se

This commit is contained in:
Victor Westerlund 2025-02-09 10:43:23 +01:00
parent 4f984d805f
commit da68dfb07f

21
sites-available/blob.conf Normal file
View file

@ -0,0 +1,21 @@
server {
listen 80;
server_name blob.vlw.se;
return 308 https://blob.vlw.se$request_uri;
}
server {
listen 443 ssl;
server_name blob.vlw.se;
include snippets/vlw.se-ssl;
root /mnt/misc/blobs;
location / {
try_files $uri =404;
}
}