]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/templates/default/ssl.erb
Enable HSTS for all apache served SSL sites
[chef.git] / cookbooks / apache / templates / default / ssl.erb
index 9e91555c0106e6c4c51aa625ea35a75d8719892d..7b16c1bbda3b1acb30979a08043c99891f4a6922 100644 (file)
@@ -1,8 +1,19 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
+SSLProtocol All -SSLv2 -SSLv3
+
 SSLHonorCipherOrder On
-SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH:!AESGCM
+SSLCipherSuite <%= node[:ssl][:ciphers] %>
+<% if node[:lsb][:release].to_f < 16.04 -%>
+
+SSLCertificateChainFile /etc/ssl/certs/letsencrypt.pem
+<% end -%>
+
+SSLUseStapling On
+SSLStaplingResponderTimeout 5
+SSLStaplingErrorCacheTimeout 60
+SSLStaplingReturnResponderErrors off
+SSLStaplingFakeTryLater off
+SSLStaplingCache shmcb:${APACHE_RUN_DIR}/ssl_ocspcache(512000)
 
-SSLCertificateFile /etc/ssl/certs/openstreetmap.pem
-SSLCertificateKeyFile /etc/ssl/private/openstreetmap.key
-SSLCertificateChainFile /etc/ssl/certs/rapidssl.pem
+Header setifempty Strict-Transport-Security max-age=3600 env=HTTPS