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