18 lines
505 B
Text
18 lines
505 B
Text
server {
|
|
|
|
server_name dash.shad.moe www.dash.shad.moe;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/dash.shad.moe/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/dash.shad.moe/privkey.pem;
|
|
ssl_trusted_certificate /etc/letsencrypt/live/dash.shad.moe/fullchain.pem;
|
|
|
|
include snippets/global/common-ssl.conf;
|
|
|
|
include snippets/proxy/common-proxy-headers.conf;
|
|
|
|
location / {
|
|
proxy_pass http://dash;
|
|
}
|
|
|
|
include snippets/global/errors/http-cat-error-pages.conf;
|
|
}
|