-
Notifications
You must be signed in to change notification settings - Fork 8
Installing SSL Certificate
Piotr Milewski edited this page Aug 12, 2016
·
5 revisions
Wiki Home ▸ [Getting Started Guide](Getting Started Guide) ▸ Installing SSL Certificate
-
Download your certificates. Put them in one file in path
/etc/nginx/cert.crt
-
Be sure that in
/etc/nginx/nginx.conf
you have those two lines:
ssl_certificate /etc/nginx/cert.crt;
ssl_certificate_key /etc/nginx/cert.key;
-
Reload nginx
service nginx reload
-
Verify that a correct certificate is presented:
echo | openssl s_client -connect api.your-instance.com:443 2>/dev/null | openssl x509 -noout -text