Enabled HTTP Strict Transport Security by default
This commit is contained in:
parent
03c77607b4
commit
c223517102
@ -14,6 +14,8 @@ nextcloud_www_path: '/var/www/nextcloud/'
|
|||||||
nextcloud_ssl: true
|
nextcloud_ssl: true
|
||||||
nextcloud_ssl_certificate_path: "/etc/ssl/certs/ssl-cert-snakeoil.pem"
|
nextcloud_ssl_certificate_path: "/etc/ssl/certs/ssl-cert-snakeoil.pem"
|
||||||
nextcloud_ssl_key_path: "/etc/ssl/private/ssl-cert-snakeoil.key"
|
nextcloud_ssl_key_path: "/etc/ssl/private/ssl-cert-snakeoil.key"
|
||||||
|
nextcloud_hsts: true
|
||||||
|
nextcloud_hsts_preload: false
|
||||||
|
|
||||||
# Apache configuration
|
# Apache configuration
|
||||||
|
|
||||||
|
@ -31,6 +31,12 @@
|
|||||||
<FilesMatch "\.php$">
|
<FilesMatch "\.php$">
|
||||||
SSLOptions +StdEnvVars
|
SSLOptions +StdEnvVars
|
||||||
</FilesMatch>
|
</FilesMatch>
|
||||||
|
|
||||||
|
{% if nextcloud_hsts %}
|
||||||
|
<IfModule mod_headers.c>
|
||||||
|
Header always set Strict-Transport-Security "max-age=15552000; includeSubDomains{% if nextcloud_hsts_preload %}; preload{% endif %}"
|
||||||
|
</IfModule>
|
||||||
|
{% endif %}
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user