Upstream config updates (Lucid->Precise)
[sysconfig/apache2.git] / mods-available / ssl.conf
1 <IfModule mod_ssl.c>
2 #
3 # Pseudo Random Number Generator (PRNG):
4 # Configure one or more sources to seed the PRNG of the SSL library.
5 # The seed data should be of good random quality.
6 # WARNING! On some platforms /dev/random blocks if not enough entropy
7 # is available. This means you then cannot use the /dev/random device
8 # because it would lead to very long connection times (as long as
9 # it requires to make more entropy available). But usually those
10 # platforms additionally provide a /dev/urandom device which doesn't
11 # block. So, if available, use this one instead. Read the mod_ssl User
12 # Manual for more details.
13 #
14 SSLRandomSeed startup builtin
15 SSLRandomSeed startup file:/dev/urandom 512
16 SSLRandomSeed connect builtin
17 SSLRandomSeed connect file:/dev/urandom 512
18
19 ##
20 ##  SSL Global Context
21 ##
22 ##  All SSL configuration in this context applies both to
23 ##  the main server and all SSL-enabled virtual hosts.
24 ##
25
26 #
27 #   Some MIME-types for downloading Certificates and CRLs
28 #
29 AddType application/x-x509-ca-cert .crt
30 AddType application/x-pkcs7-crl    .crl
31
32 #   Pass Phrase Dialog:
33 #   Configure the pass phrase gathering process.
34 #   The filtering dialog program (`builtin' is a internal
35 #   terminal dialog) has to provide the pass phrase on stdout.
36 SSLPassPhraseDialog  exec:/usr/share/apache2/ask-for-passphrase
37
38 #   Inter-Process Session Cache:
39 #   Configure the SSL Session Cache: First the mechanism 
40 #   to use and second the expiring timeout (in seconds).
41 #   (The mechanism dbm has known memory leaks and should not be used).
42 #SSLSessionCache         dbm:${APACHE_RUN_DIR}/ssl_scache
43 SSLSessionCache        shmcb:${APACHE_RUN_DIR}/ssl_scache(512000)
44 SSLSessionCacheTimeout  300
45
46 #   Semaphore:
47 #   Configure the path to the mutual exclusion semaphore the
48 #   SSL engine uses internally for inter-process synchronization. 
49 SSLMutex  file:${APACHE_RUN_DIR}/ssl_mutex
50
51 #   SSL Cipher Suite:
52 #   List the ciphers that the client is permitted to negotiate.
53 #   See the mod_ssl documentation for a complete list.
54 #   enable only secure ciphers:
55 SSLCipherSuite HIGH:MEDIUM:!ADH:!MD5
56 #   Use this instead if you want to allow cipher upgrades via SGC facility.
57 #   In this case you also have to use something like 
58 #        SSLRequire %{SSL_CIPHER_USEKEYSIZE} >= 128
59 #   see http://httpd.apache.org/docs/2.2/ssl/ssl_howto.html.en#upgradeenc
60 #SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
61
62 # enable only secure protocols: SSLv3 and TLSv1, but not SSLv2
63 SSLProtocol all -SSLv2
64
65 # Allow insecure renegotiation with clients which do not yet support the
66 # secure renegotiation protocol. Default: Off
67 #SSLInsecureRenegotiation on
68
69 # Whether to forbid non-SNI clients to access name based virtual hosts.
70 # Default: Off
71 #SSLStrictSNIVHostCheck On
72
73 </IfModule>