On Monday 02 March 2009, Kaushal Shriyan wrote: > Hi, > > is there a step by step guide to configure ssl on apache2 on Gentoo OS? > > Thanks and Regards > > Kaushal The same way as you would configure it on any apache installation. The ssl USE flag comes enabled as a default. Therefore all you need to do (going from memory here) is to add: SSLCertificateFile /path-to-your.crt SSLCertificateKeyFile /path-to-your-secure-key.ca (you'll need to create these two first) Then add: SSLEngine on under the respective (virtual)host part. If you also want it to listen on some obscure port rather than the default 443 then add Listen NNNN for the port number that you have configured for your SSL enabled (virtual) host. -- Regards, Mick