123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <IfModule mod_ssl.c>
-
-
-
-
-
-
-
-
-
-
-
- SSLRandomSeed startup builtin
- SSLRandomSeed startup file:/dev/urandom 512
- SSLRandomSeed connect builtin
- SSLRandomSeed connect file:/dev/urandom 512
-
-
-
-
-
-
-
-
-
- <IfModule mod_mime.c>
- AddType application/x-x509-ca-cert .crt
- AddType application/x-pkcs7-crl .crl
- </IfModule>
-
-
-
-
- SSLPassPhraseDialog builtin
-
-
-
-
-
- SSLSessionCache shmcb:${APACHE_RUN_DIR}/ssl_scache(512000)
- SSLSessionCacheTimeout 300
-
-
-
-
-
-
-
-
-
-
-
- SSLCipherSuite HIGH:!aNULL
-
-
-
-
-
-
-
-
-
-
-
- SSLProtocol all -SSLv3
-
-
-
-
-
-
- </IfModule>
- LogFormat "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" ssl_info
- LogFormat "%{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%{User-Agent}i\"" ssl_info_browser
|