Included steps for adding SSL certificate from a CA other than letsencrypt

This commit is contained in:
jfederico
2020-02-14 17:39:53 -05:00
parent 182e1a9f6c
commit 17e89295e3
5 changed files with 42 additions and 8 deletions

View File

@@ -25,9 +25,14 @@ server {
listen 443 ssl;
listen [::]:443;
## Configuration for Letsencrypt SSL Certificate
ssl_certificate /etc/letsencrypt/live/$NGINX_HOSTNAME/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/$NGINX_HOSTNAME/privkey.pem;
## Configuration for SSL Certificate from a CA other than Letsencrypt
#ssl_certificate /etc/ssl/fullchain.pem;
#ssl_certificate_key /etc/ssl/privkey.pem;
location / {
proxy_pass http://docker-scalelite;
proxy_read_timeout 60s;