Files
bpfire/config/httpd/ssl-global.conf
2021-04-14 17:20:34 +00:00

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>