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>
|
</IfModule>
|
||||||
|
|
||||||
Listen 443
|
Listen 443
|
||||||
<% if ['CentOS','RedHat'].index(operatingsystem) or operatingsystem == 'Fedora' -%>
|
<% if ['Fedora','CentOS','RedHat'].index(operatingsystem) -%>
|
||||||
##
|
##
|
||||||
## SSL Global Context
|
## SSL Global Context
|
||||||
##
|
##
|
||||||
|
@ -30,11 +30,13 @@ SSLPassPhraseDialog builtin
|
||||||
SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000)
|
SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000)
|
||||||
SSLSessionCacheTimeout 300
|
SSLSessionCacheTimeout 300
|
||||||
|
|
||||||
|
<% unless operatingsystem == 'Fedora' and operatingsystemrelease.to_i > 17 -%>
|
||||||
# Semaphore:
|
# Semaphore:
|
||||||
# Configure the path to the mutual exclusion semaphore the
|
# Configure the path to the mutual exclusion semaphore the
|
||||||
# SSL engine uses internally for inter-process synchronization.
|
# SSL engine uses internally for inter-process synchronization.
|
||||||
SSLMutex default
|
SSLMutex default
|
||||||
|
|
||||||
|
<% end -%>
|
||||||
# Pseudo Random Number Generator (PRNG):
|
# Pseudo Random Number Generator (PRNG):
|
||||||
# Configure one or more sources to seed the PRNG of the
|
# Configure one or more sources to seed the PRNG of the
|
||||||
# SSL library. The seed data should be of good random quality.
|
# SSL library. The seed data should be of good random quality.
|
||||||
|
|
Loading…
Add table
Reference in a new issue