31 lines
849 B
Plaintext
31 lines
849 B
Plaintext
|
# Configuration for {{ gitweb_url }}
|
||
|
# vim:ft=apache:
|
||
|
|
||
|
# Accept connections from non-SNI clients
|
||
|
SSLStrictSNIVHostCheck off
|
||
|
|
||
|
# Website configuration
|
||
|
<VirtualHost *:80>
|
||
|
ServerName {{ gitweb_url }}
|
||
|
Redirect permanent / https://{{ gitweb_url }}
|
||
|
</VirtualHost>
|
||
|
<VirtualHost *:443>
|
||
|
SSLEngine on
|
||
|
SSLCertificateFile /etc/pki/cert/crt/{{ gitweb_url }}.crt
|
||
|
SSLCertificateKeyFile /etc/pki/cert/private/{{ gitweb_url }}.key
|
||
|
SSLCertificateChainFile /etc/pki/cert/crt/{{ gitweb_url}}-fullchain.crt
|
||
|
<FilesMatch "\.(cgi|shtml|phtml|php)$">\
|
||
|
SSLOptions +StdEnvVars
|
||
|
</FilesMatch>
|
||
|
<Directory /usr/lib/cgi-bin>
|
||
|
SSLOptions +StdEnvVars
|
||
|
</Directory>
|
||
|
ServerName {{ gitweb_url }}
|
||
|
DocumentRoot {{ gitweb_webroot }}
|
||
|
<Directory "{{ gitweb_webroot }}">
|
||
|
Require all granted
|
||
|
AllowOverride All
|
||
|
Options MultiViews FollowSymlinks
|
||
|
</Directory>
|
||
|
</VirtualHost>
|