summaryrefslogtreecommitdiffstats
path: root/roles/cgit/templates/vhost.conf
blob: 908c21fa09cc3af696a09ef1b8202aa5ba9e2326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% for i in '80', '443' %}
<VirtualHost *:{{ i }}>

    Alias /cgit-data /usr/share/cgit
    ScriptAlias /cgit /var/www/cgi-bin/cgit

    RedirectMatch ^/$ /cgit/

    ServerName git.{{ ansible_domain }}

</VirtualHost>
{% endfor %}