Page 1 of 1

SSL with VirtualHost I don't get it!!!

PostPosted: 16. August 2006 16:44
by banaantjuh12
capitalfellow wrote:Yes! There are lots of different ways to enable it and it all depends on how you have things set up in httpd.conf and ssl.conf now. Here is mine:

in ssl.conf:
Listen 0.0.0.0:443

then in httpd.conf (or where you have your virtual hosts defined):

<IfDefine SSL>
<VirtualHost 152.15.47.139:443 >

all your virtual host stuff here

SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /path/to/your/certificate.crt
SSLCertificateKeyFile /path/to/your/server.key

SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
</VirtualHost>
</IfDefine>


He says this. Do I need to create an SSL certificate? If yes: How? What do I exacly need to fill in on the text "all your virual host stuff here".

Did I forget something?