From 18af82f97fe2057ea0a7f1c8962f184c4b239cb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Wed, 23 Jan 2013 17:51:03 +0200 Subject: [PATCH] Fixed Apache ssl.conf for Fedora 18. --- apache/templates/ssl.conf.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apache/templates/ssl.conf.erb b/apache/templates/ssl.conf.erb index 5e644f4..54d7f21 100644 --- a/apache/templates/ssl.conf.erb +++ b/apache/templates/ssl.conf.erb @@ -3,7 +3,7 @@ LoadModule ssl_module modules/mod_ssl.so Listen 443 -<% if ['CentOS','RedHat'].index(operatingsystem) or operatingsystem == 'Fedora' -%> +<% if ['Fedora','CentOS','RedHat'].index(operatingsystem) -%> ## ## SSL Global Context ## @@ -30,11 +30,13 @@ SSLPassPhraseDialog builtin SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000) SSLSessionCacheTimeout 300 +<% unless operatingsystem == 'Fedora' and operatingsystemrelease.to_i > 17 -%> # Semaphore: # Configure the path to the mutual exclusion semaphore the # SSL engine uses internally for inter-process synchronization. SSLMutex default +<% end -%> # Pseudo Random Number Generator (PRNG): # Configure one or more sources to seed the PRNG of the # SSL library. The seed data should be of good random quality.