Completely revamped nginx config
This commit is contained in:
parent
3411f3d0a9
commit
d13573f87d
19 changed files with 152 additions and 83 deletions
14
nginx/sites-available/koel.conf.template
Normal file
14
nginx/sites-available/koel.conf.template
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
# SSL Key locations
|
||||
ssl_certificate /etc/letsencrypt/live/${KOEL_DOMAIN}/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/${KOEL_DOMAIN}/privkey.pem;
|
||||
|
||||
listen ${HTTPS_PORT} ssl;
|
||||
listen [::]:${HTTPS_PORT} ssl;
|
||||
server_name ${KOEL_DOMAIN};
|
||||
|
||||
location / {
|
||||
resolver 127.0.0.11;
|
||||
proxy_pass http://${KOEL_HOST}:80;
|
||||
}
|
||||
}
|
||||
Reference in a new issue