blob: 62bb9d4b6b3bf2f879d2725141389acb49de0c1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# git-daemon config file
# location of the lockfile
#LOCKFILE=/var/lock/subsys/git-daemon
# which directory to server
#GITDIR=/srv/git
# do we serve vhosts?
# setting this to yes assumes that you
# have in $GITDIR per vhost to serve
# a subdirectory containing their repos.
# for example:
# - /srv/git/git.example.com
# - /srv/git/git.example.org
#GITVHOST=no
GITVHOST=yes
# the user git-daemon should run with
#GITUSER=nobody
# options for the daemon
#OPTIONS="--reuseaddr --verbose --detach"
# location of the daemon
#GITDAEMON=/usr/bin/git-daemon
|