User login
Navigation
Recent blog posts
- Ubuntu mirrors up and improved!
- Google-jstemplate: Iterate object with unknown properties
- nginx https proxypass for php apps
- sugarcrm & memcache: Doing it Wrong
- subversion and https in Ubuntu Karmic
- Drupal: Views block delta converted to md5 hash
- Ubuntu Server install requires PAE
- Installing Drupal from command line
- Drupal: Handling form field weight through CCK
- minify javascript using Google Closure Compiler
angch's location
angch twitter
Self Signed Cert, cheat sheet.

angch — Thu, 21/05/2009 - 13:01
No encrypting ofs erver.key in the first place, so we have one less step. Commands:
openssl genrsa -out server.key 4096
openssl req -new -key server.key -out server.csr
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
cat server.crt server.key > $myserver.pemSSLEngine on
SSLCertificateFile $myserver.pem
SSLCertificateKeyFile $myserver.pemssl on;
ssl_certificate $myserver.pem;
ssl_certificate_key $myserver.pem;