Skip to content

Instantly share code, notes, and snippets.

@rbngzlv
Forked from prellele/gist:1825744
Last active August 29, 2015 14:11
Show Gist options
  • Save rbngzlv/900a48f97b4825484746 to your computer and use it in GitHub Desktop.
Save rbngzlv/900a48f97b4825484746 to your computer and use it in GitHub Desktop.

NOTE: You can check, if your config here:
http://www.sslshopper.com/ssl-checker.html

Decrypt the private key using the password you entered when you created your key:
openssl rsa -in ssl.key -out /etc/nginx/conf/ssl.key

Protect your key from prying eyes:
chmod 600 /etc/nginx/conf/ssl.key

Fetch StartSSL’s root CA and class 1 intermediate server CA certificates:
wget http://www.startssl.com/certs/sub.class1.server.ca.pem

Create a unified certificate from your certificate and the CA certificates:
cat ssl.crt sub.class1.server.ca.pem > /etc/nginx/conf/ssl-unified.crt

Configure your nginx server to use the new key and certificate (in the global settings or a server section):
ssl on;
ssl_certificate /etc/nginx/conf/ssl-unified.crt;
ssl_certificate_key /etc/nginx/conf/ssl.key;

Now reload Nginx configuration

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment