We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Step by Step: Configuring SSL Under Apache
|
| Subject: |
|
SSL Random Seed |
| Date: |
|
2009-01-06 15:14:09 |
| From: |
|
StephanX
|
|
|
|
Hi Folks,
This is a great little how-to. Unfortunately, there's an error in the SSLRandomSeed directive here; SSLRandomSeed can't be called from the <VirtualHost> section, and fails with a syntax error. On my Debian system, I have it listed in the /etc/apache2/conf.d/virtual.conf file, just with
SSLRandomSeed startup file:/dev/urandom 1024
SSLRandomSeed connect file:/dev/urandom 1024
Also, be sure to remove the forward slashes and join the entire line when adding the "SetEnvIf User-Agent" section; all three lines should be joined to look like:
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
Regards,
Stephan
|