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

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

    RedirectMatch ^/$ /cgit/

    # TODO clean it
    ServerName git.theopensourceway.org

</VirtualHost>
{% endfor %}