appmgr: bugfix: use fullchain cert

This commit is contained in:
Aiden McClelland
2021-02-24 16:23:48 -07:00
committed by Aiden McClelland
parent c52f75c9e3
commit ee1c66d0c2
3 changed files with 28 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
server {{
listen 443 ssl;
server_name {hostname}.local;
ssl_certificate /root/appmgr/apps/{app_id}/cert-local.crt.pem;
ssl_certificate /root/appmgr/apps/{app_id}/cert-local.fullchain.crt.pem;
ssl_certificate_key /root/appmgr/apps/{app_id}/cert-local.key.pem;
location / {{
proxy_pass http://{app_ip}:{internal_port}/;