summaryrefslogtreecommitdiff
path: root/templates/vhosts/php_typo3
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-12-06 17:40:46 +0100
committermh <mh@immerda.ch>2010-12-06 17:40:46 +0100
commita87d7b91cc95c8ac7aee327e4cf4d3ce564cdea1 (patch)
tree7c97eba3a7610c8151ab9d8e048cad77f1dd7d06 /templates/vhosts/php_typo3
parentc8c3719c722c23dc5c4187eaf487947340a95478 (diff)
add STS header for enforced SSL sites
* http://en.wikipedia.org/wiki/Strict_Transport_Security This will tell browsers to interact with that site only per HTTPS.
Diffstat (limited to 'templates/vhosts/php_typo3')
-rw-r--r--templates/vhosts/php_typo3/php_typo3.erb8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/vhosts/php_typo3/php_typo3.erb b/templates/vhosts/php_typo3/php_typo3.erb
index 8195e41..c364927 100644
--- a/templates/vhosts/php_typo3/php_typo3.erb
+++ b/templates/vhosts/php_typo3/php_typo3.erb
@@ -46,6 +46,10 @@
</IfModule>
<%- end -%>
+ <%- if ssl_mode.to_s == 'force' then -%>
+ Header add Strict-Transport-Security "max-age=15768000"
+
+ <%- end -%>
<%- if not ssl_mode.to_s == 'force' then -%>
<Directory "<%= documentroot %>/">
AllowOverride <%= allow_override %>
@@ -374,6 +378,10 @@
AddDefaultCharset <%= default_charset %>
<%- end -%>
+ <%- if ssl_mode.to_s == 'force' then -%>
+ Header add Strict-Transport-Security "max-age=15768000"
+
+ <%- end -%>
<%- if run_mode.to_s == 'static-itk' -%>
<Directory "<%= documentroot %>/">
AllowOverride <%= allow_override %>