|
Line 52
Link Here
|
|
|
52 |
# SSL Cipher Suite: |
| 53 |
# List the ciphers that the client is permitted to negotiate. See the |
| 54 |
# ciphers(1) man page from the openssl package for list of all available |
| 55 |
# options. |
| 56 |
@!@ |
| 57 |
if configRegistry.get('apache2/ssl/ciphersuite'): |
| 58 |
print 'SSLCipherSuite %s' % configRegistry.get('apache2/ssl/ciphersuite') |
| 59 |
@!@ |
| 60 |
|
| 61 |
# SSLHonorCipherOrder |
| 62 |
# Option to prefer the server's cipher preference order |
| 63 |
# When choosing a cipher during an SSLv3 or TLSv1 handshake, normally the |
| 64 |
# client's preference is used. If this directive is enabled, |
| 65 |
# the server's preference will be used instead. |
| 66 |
@!@ |
| 67 |
if configRegistry.get('apache2/ssl/honorcipherorder'): |
| 68 |
print 'SSLHonorCipherOrder %s' % configRegistry.get('apache2/ssl/honorcipherorder') |
| 69 |
|
| 70 |
@!@ |