Last active
January 2, 2017 16:56
-
-
Save jfisbein/d7c588d97e523399069e to your computer and use it in GitHub Desktop.
Install StartSSL cert in FritzBox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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