Skip to content

Instantly share code, notes, and snippets.

@jfisbein
Last active January 2, 2017 16:56
Show Gist options
  • Save jfisbein/d7c588d97e523399069e to your computer and use it in GitHub Desktop.
Save jfisbein/d7c588d97e523399069e to your computer and use it in GitHub Desktop.
Install StartSSL cert in FritzBox
#!/bin/bash
# decipher key
openssl rsa -in ssl.key -out ssl.key
# download intermediate cert
wget http://www.startssl.com/certs/sub.class1.server.ca.pem
# join certs
cat ssl.crt sub.class1.server.ca.pem ssl.key > all.pem
echo "Upload all.pem throught web interface to fritz box :-)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment