Skip to content

Instantly share code, notes, and snippets.

@maciejkowalski
Forked from ideaoforder/godaddy-ssl-howto
Created January 30, 2019 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maciejkowalski/937746da461bc3288d7322a6f0adeb35 to your computer and use it in GitHub Desktop.
Save maciejkowalski/937746da461bc3288d7322a6f0adeb35 to your computer and use it in GitHub Desktop.
GoDaddy + Nginx SSL
openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr
http://support.godaddy.com/help/article/3601/generating-a-certificate-signing-request-nginx
http://support.godaddy.com/help/article/4976/rekeying-an-ssl-certificate
# Be sure to remember to chain them!
cat gd_bundle-g2-g1.crt >> yourdomain.crt
# Move 'em
sudo mv yourdomain.crt /etc/ssl/certs/yourdomain.crt
sudo mv yourdomain.key /etc/ssl/certs/yourdomain.key
# Now make sure everything is chained properly
http://www.sslshopper.com/ssl-checker.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment