Nginx-Configurations/http.d/z.shad.moe
2024-12-03 18:05:31 +00:00

18 lines
493 B
Text

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;
}