ansible/roles/gitweb/templates/apache2-vhost.conf

14 lines
305 B
Plaintext
Raw Normal View History

# 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>