]> git.openstreetmap.org Git - chef.git/blob - cookbooks/apache/templates/default/ssl.erb
Disable SSLv3
[chef.git] / cookbooks / apache / templates / default / ssl.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 SSLProtocol All -SSLv2 -SSLv3
4
5 SSLHonorCipherOrder On
6 SSLCipherSuite aRSA+HIGH:+kEDH:+kRSA:!kSRP:!kPSK:+3DES:!MD5
7
8 SSLCertificateFile /etc/ssl/certs/<%= @certificate %>.pem
9 SSLCertificateKeyFile /etc/ssl/private/<%= @certificate %>.key
10 SSLCertificateChainFile /etc/ssl/certs/rapidssl.pem
11 <% if node[:lsb][:release].to_f >= 14.04 -%>
12
13 SSLUseStapling On
14 SSLStaplingResponderTimeout 5
15 SSLStaplingReturnResponderErrors off
16 SSLStaplingCache shmcb:${APACHE_RUN_DIR}/ssl_ocspcache(512000)
17 <% end -%>