2020-02-18 02:39:55 -06:00
|
|
|
# Configuration for {{ dokuwiki_url }}
|
|
|
|
# vim:ft=apache:
|
|
|
|
|
|
|
|
# Accept connections from non-SNI clients
|
|
|
|
SSLStrictSNIVHostCheck off
|
|
|
|
|
|
|
|
# Website configuration
|
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName {{ dokuwiki_url }}
|
|
|
|
Redirect permanent / https://{{ dokuwiki_url }}
|
|
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:443>
|
|
|
|
SSLEngine on
|
|
|
|
SSLCertificateFile /etc/pki/cert/crt/{{ dokuwiki_url }}.crt
|
|
|
|
SSLCertificateKeyFile /etc/pki/cert/private/{{ dokuwiki_url }}.key
|
|
|
|
SSLCertificateChainFile /etc/pki/cert/crt/{{ dokuwiki_url}}-fullchain.crt
|
2020-06-04 19:35:59 -05:00
|
|
|
SSLProtocol {{ ssl_protocol }}
|
2020-06-03 06:07:11 -05:00
|
|
|
SSLCipherSuite {{ ssl_cipher_suite }}
|
2020-02-18 02:39:55 -06:00
|
|
|
<FilesMatch "\.(cgi|shtml|phtml|php)$">\
|
|
|
|
SSLOptions +StdEnvVars
|
|
|
|
</FilesMatch>
|
|
|
|
<Directory /usr/lib/cgi-bin>
|
|
|
|
SSLOptions +StdEnvVars
|
|
|
|
</Directory>
|
|
|
|
ServerName {{ dokuwiki_url }}
|
|
|
|
DocumentRoot {{ dokuwiki_webroot }}
|
|
|
|
<Directory "{{ dokuwiki_webroot }}">
|
|
|
|
Require all granted
|
|
|
|
AllowOverride All
|
|
|
|
Options MultiViews FollowSymlinks
|
|
|
|
</Directory>
|
|
|
|
<IfModule mod_headers.c>
|
|
|
|
Header always set Strict-Transport-Security "max-age=15552000; includeSubDomains"
|
|
|
|
</IfModule>
|
|
|
|
</VirtualHost>
|