14 lines
305 B
Plaintext
14 lines
305 B
Plaintext
|
# Configuration for {{ gitweb_url }}
|
||
|
# vim:ft=apache:
|
||
|
|
||
|
# Website configuration
|
||
|
<VirtualHost *:80>
|
||
|
ServerName {{ gitweb_url }}
|
||
|
DocumentRoot {{ gitweb_webroot }}
|
||
|
<Directory "{{ gitweb_webroot }}">
|
||
|
Require all granted
|
||
|
AllowOverride All
|
||
|
Options MultiViews FollowSymlinks
|
||
|
</Directory>
|
||
|
</VirtualHost>
|