aboutsummaryrefslogtreecommitdiff
path: root/gitweb.conf
blob: 8fb62d16f4b295d7abe3981150645ba9cbc8c834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Include the global configuration, if found.
do "/etc/gitweb.conf" if -e "/etc/gitweb.conf";
 
# Point to projects.list file generated by gitosis.
# Here gitosis manages the user "git", who has a
# home directory of /srv/example.com/git
$projects_list = "/srv/example.com/git/gitosis/projects.list";
 
# Where the actual repositories are located.
$projectroot = "/srv/example.com/git/repositories";
 
# By default, gitweb will happily let people browse any repository
# they guess the name of. This may or may not be what you wanted.  I
# choose to allow gitweb to show only repositories that git-daemon
# is already sharing anonymously.
$export_ok = "git-daemon-export-ok";
 
# A list of base urls where all the repositories can be cloned from.
# Easier than having per-repository cloneurl files.
@git_base_url_list = ('git://example.com');