Advertisement
thefinn93

Apache SSL

Sep 12th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.70 KB | None | 0 0
  1. SSLEngine on
  2. SSLCertificateFile              /etc/ssl/private/www.thefinn93.com.pem
  3. # SSLCertificateKeyFile   /etc/ssl/private/www.thefinn93.com.key  # This is if you have the crt and the key separate. I prefer to put them both into one .pem file, on the above line
  4. SSLCertificateChainFile /etc/ssl/startcom/sub.class1.server.ca.pem  # Download this from https://www.startssl.com/certs/ (if you have startcom)
  5. SSLCACertificateFile    /etc/ssl/startcom/ca.pem # This too. Also from https://www.startssl.com/certs/ if you have startcom
  6. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown # This is some hacky IE bullshit that I hear is good.
  7.  
  8. # Be sure to enable mod_ssl and listen on port 443.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement