From ab20a64026d7ac29f8461e582c6bb1f33c882720 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20=C5=9Awi=C4=85tek?= Date: Fri, 12 Jul 2013 12:01:11 +0200 Subject: [PATCH] - do not use any SSLSessionCache by default, this implies that you didn't install mod_socache if you have, you can configure it. --- apache-mod_ssl.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apache-mod_ssl.conf b/apache-mod_ssl.conf index 4da2c7d..ea88204 100644 --- a/apache-mod_ssl.conf +++ b/apache-mod_ssl.conf @@ -54,8 +54,11 @@ SSLPassPhraseDialog builtin # Configure the SSL Session Cache: First the mechanism # to use and second the expiring timeout (in seconds). #SSLSessionCache dbm:/var/cache/httpd/ssl_scache -#SSLSessionCache shmcb:/var/run/ssl_scache(512000) -SSLSessionCache shmcb:/var/cache/httpd/ssl_scache(512000) +#SSLSessionCache shmcb:/var/cache/httpd/ssl_scache(512000) + +# Replace this with one of the above (addition apache-mod_socache +# needs to be installed and a apropriate module has to be loaded) +SSLSessionCache nonenotnull SSLSessionCacheTimeout 300 # Usable SSL protocol flavors: -- 2.44.0