18 lines
493 B
Text
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;
|
|
}
|