add z and drop

This commit is contained in:
Michael 2024-12-03 18:05:31 +00:00
parent d120844d36
commit 2fa1c96ef1
2 changed files with 36 additions and 0 deletions

18
http.d/drop.shad.moe Normal file
View file

@ -0,0 +1,18 @@
server {
server_name drop.shad.moe www.drop.shad.moe;
ssl_certificate /etc/letsencrypt/live/drop.shad.moe/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/drop.shad.moe/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/drop.shad.moe/fullchain.pem;
include snippets/global/common-ssl.conf;
include snippets/proxy/common-proxy-headers.conf;
location / {
proxy_pass http://pairdrop;
}
include snippets/global/errors/http-cat-error-pages.conf;
}

18
http.d/z.shad.moe Normal file
View file

@ -0,0 +1,18 @@
server {
server_name z.shad.moe www.z.shad.moe;
ssl_certificate /etc/letsencrypt/live/z.shad.moe/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/z.shad.moe/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/z.shad.moe/fullchain.pem;
include snippets/global/common-ssl.conf;
include snippets/proxy/common-proxy-headers.conf;
location / {
proxy_pass http://zipline;
}
include snippets/global/errors/http-cat-error-pages.conf;
}