Fixed Apache ssl.conf for Fedora 18.
This commit is contained in:
parent
3d26fe7814
commit
18af82f97f
1 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,7 @@ LoadModule ssl_module modules/mod_ssl.so
|
|||
</IfModule>
|
||||
|
||||
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.
|
||||
|
|
Loading…
Add table
Reference in a new issue