Skip to content

Installing SSL Certificate

Piotr Milewski edited this page Aug 12, 2016 · 5 revisions

Wiki Home ▸ [Getting Started Guide](Getting Started Guide) ▸ Installing SSL Certificate

Installation on nginx

  1. Download your certificates. Put them in one file in path /etc/nginx/cert.crt

  2. 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;
  1. Reload nginx service nginx reload

  2. Verify that a correct certificate is presented:

    echo | openssl s_client -connect api.your-instance.com:443 2>/dev/null | openssl x509 -noout -text

Clone this wiki locally