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