[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: working conf of apache2 with ssl on sid box



* Maurizio Marini (maumar@datalogica.com) wrote :
> Hi
> is there someone with a sid box with apache+mod_ssl, so nice to send me a 
> working overall example of his conf?
> any help will be very apreciated
> 	thnx, Maurizio

i'm using it straight out of the box:
apt-get install apache2-mpm-worker;
a2enmod ssl

<VirtualHost x.x.x.x:443>
        SSLEngine on
        SSLOptions +FakeBasicAuth
        SSLCertificateFile /etc/apache2/security/xxxx.pem
        ServerName xxxx
        ServerAdmin thom@clearairturbulence.org
        DocumentRoot /var/www
        ErrorLog /var/log/apache2/svn.error.log
</VirtualHost>

ssl.conf is:
SSLSessionCache shm:/var/log/apache2/ssl_scache(128000)
SSLMutex file:/var/log/apache2/ssl_mutex
SSLRandomSeed startup file:/dev/urandom 512
SSLRandomSeed connect file:/dev/urandom 512

-Thom



Reply to: