Fixes to Apache 2.4 configuration

This commit is contained in:
Rickard Nilsson 2014-11-06 21:58:26 +01:00
parent beb14981bb
commit 2b3c3d0e32

View File

@ -111,6 +111,7 @@ let
"unixd" "unixd"
"cache" "cache_disk" "cache" "cache_disk"
"slotmem_shm" "slotmem_shm"
"socache_shmcb"
] ]
++ (if mainCfg.multiProcessingModule == "prefork" then [ "cgi" ] else [ "cgid" ]) ++ (if mainCfg.multiProcessingModule == "prefork" then [ "cgi" ] else [ "cgid" ])
++ optional enableSSL "ssl" ++ optional enableSSL "ssl"
@ -162,9 +163,9 @@ let
sslConf = '' sslConf = ''
SSLSessionCache shm:${mainCfg.stateDir}/ssl_scache(512000) SSLSessionCache ${if version24 then "shmcb" else "shm"}:${mainCfg.stateDir}/ssl_scache(512000)
SSLMutex posixsem ${if version24 then "Mutex" else "SSLMutex"} posixsem
SSLRandomSeed startup builtin SSLRandomSeed startup builtin
SSLRandomSeed connect builtin SSLRandomSeed connect builtin