summaryrefslogtreecommitdiff
path: root/files/xinetd.d/git.vhosts
blob: 98938206588da71f25c75ba2141d0e72285a9f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# default: off
# description: The git dæmon allows git repositories to be exported using
#	the git:// protocol.

service git
{
        disable		= no
        socket_type     = stream
        wait            = no
        user            = nobody
        server          = /usr/bin/git-daemon
        server_args     = --interpolated-path=/srv/git/%H/%D --syslog --inetd --verbose
        log_on_failure  += USERID
# xinetd doesn't do this by default. bug #195265
        flags		= IPv6
}