From b6d7dc1d32a58c796eb61c8b265ee39909ccdaa1 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 13 Nov 2024 16:45:31 +0000 Subject: [PATCH] add img.shad.moe --- http.d/img.shad.moe | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 http.d/img.shad.moe diff --git a/http.d/img.shad.moe b/http.d/img.shad.moe new file mode 100644 index 0000000..76f4612 --- /dev/null +++ b/http.d/img.shad.moe @@ -0,0 +1,18 @@ +server { + + server_name img.shad.moe www.img.shad.moe; + + ssl_certificate /etc/letsencrypt/live/img.shad.moe/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/img.shad.moe/privkey.pem; + ssl_trusted_certificate /etc/letsencrypt/live/img.shad.moe/fullchain.pem; + + include snippets/global/common-ssl.conf; + + include snippets/proxy/common-proxy-headers.conf; + + location / { + proxy_pass http://immich/; + } + + include snippets/global/errors/http-cat-error-pages.conf; +}