aboutsummaryrefslogtreecommitdiff
path: root/example.conf
blob: 87bd822fc17ebfe0132f7060afa8036f84c3be99 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# this config file tries to show a bit of everything, most real life
# configurations really only need a "group" section with "members" and
# "writable"
 
[gitosis]
## To override the default ~/repositories path
# repositories = repositories
 
## Allow gitweb to show all known repositories. If you want gitweb,
## you need either this or a [repo foo] section for each repository
## you want visible in gitweb.
gitweb = no
 
## Allow git-daemon to publish all known repositories. As with gitweb,
## this can be done globally or per-repository.
daemon = no
 
## Logging level, one of DEBUG, INFO, WARNING, ERROR, CRITICAL
loglevel = DEBUG
 
[group quux]
members = jdoe wsmith @anothergroup
writable = foo bar baz/thud
readonly = xyzzy
 
## You can use groups just to avoid listing users multiple times. Note
## no writable= or readonly= lines.
[group anothergroup]
members = alice bill
 
## You can play fancy tricks by making some repositories appear with
## different names in different contexts. Not really supported
## everywhere (e.g. gitweb) and can be confusing -- experts only.
map writable visiblename1 = actualname1
map readonly visiblename2 = actualname2
 
[repo foo]
## Allow gitweb to show this repository.
gitweb = yes
 
## Oneline description of the project, mostly for gitweb.
description = blah blah
 
## Owner of this repository. Used in gitweb list of projects.
owner = John Doe
 
## Allow git-daemon to publish this repository.
daemon = yes
 
[gitweb]
## Where to make gitweb link to as it's "home location".
## NOT YET IMPLEMENTED.
# homelink = http://example.com/