mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Signed-off-by: Peter Müller <peter.mueller@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
19 lines
457 B
Plaintext
19 lines
457 B
Plaintext
<IfModule mod_ssl.c>
|
|
|
|
# Some MIME-types for downloading Certificates and CRLs
|
|
AddType application/x-x509-ca-cert .crt
|
|
AddType application/x-pkcs7-crl .crl
|
|
|
|
# Pass Phrase Dialog
|
|
SSLPassPhraseDialog builtin
|
|
|
|
# Inter-Process Session Cache
|
|
SSLSessionCache shmcb:/var/log/httpd/ssl_scache(512000)
|
|
SSLSessionCacheTimeout 900
|
|
|
|
# Pseudo Random Number Generator (PRNG)
|
|
SSLRandomSeed startup builtin
|
|
SSLRandomSeed connect builtin
|
|
|
|
</IfModule>
|