]> git.ipfire.org Git - ipfire-2.x.git/blame - config/httpd/ssl-global.conf
Merge branch 'next'
[ipfire-2.x.git] / config / httpd / ssl-global.conf
CommitLineData
90c973a6
MT
1<IfModule mod_ssl.c>
2
1fe39ef5 3 # Some MIME-types for downloading Certificates and CRLs
90c973a6
MT
4 AddType application/x-x509-ca-cert .crt
5 AddType application/x-pkcs7-crl .crl
6
1fe39ef5 7 # Pass Phrase Dialog
90c973a6
MT
8 SSLPassPhraseDialog builtin
9
1fe39ef5 10 # Inter-Process Session Cache
90c973a6
MT
11 SSLSessionCache shmcb:/var/log/httpd/ssl_scache(512000)
12 SSLSessionCacheTimeout 900
13
1fe39ef5 14 # Pseudo Random Number Generator (PRNG)
90c973a6
MT
15 SSLRandomSeed startup builtin
16 SSLRandomSeed connect builtin
17
90c973a6 18</IfModule>