14 lines
305 B
ApacheConf
14 lines
305 B
ApacheConf
# 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>
|