~lutostag/charms/trusty/apache2/multiple-extra-packages

« back to all changes in this revision

Viewing changes to data/security.template

  • Committer: Haw Loeung (hloeung)
  • Date: 2014-12-12 03:41:09 UTC
  • mfrom: (56.2.7 ssl-security-options)
  • Revision ID: haw.loeung@canonical.com-20141212034109-7vx563hc6hb60so8
[r=aisrael] Add option to override supported SSL protocol and cipher suites; Enforce server's preference instead of browser/client and ship out Canonical IS recommended cipher suites by default. Also pull in changes from precise charm - lp:charms/apache2

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
# Set to one of:  On | Off | extended
51
51
#
52
52
TraceEnable {{ trace_enabled }}
 
53
 
 
54
<IfModule mod_ssl.c>
 
55
        SSLProtocol {{ ssl_protocol }}
 
56
        SSLHonorCipherOrder {{ ssl_honor_cipher_order }}
 
57
        SSLCipherSuite {{ ssl_cipher_suite }}
 
58
</IfModule>