Move some of our customizations out into gitweb.conf.
[hcoop/zz_old/gitweb.git] / gitweb.conf
1 # -*- Perl -*-
2
3 # path to git projects (<project>.git)
4 $projectroot = "/var/cache/git";
5
6 # directory to use for temp files
7 $git_temp = "/tmp";
8
9 # target of the home link on top of all pages
10 #$home_link = $my_uri || "/";
11
12 # string of the home link on top of all pages
13 $home_link_str = "HCoop";
14
15 # html text to include at home page
16 $home_text = "/var/local/lib/gitweb/indextext.html";
17
18 # filename of cached version of front page
19 $cached_front_page = "/var/local/lib/gitweb/indexcache.html";
20
21 # name of site
22 $site_name = "HCoop Git";
23
24 # file with project list; by default, simply scan the projectroot dir.
25 $projects_list = $projectroot;
26
27 # list of git base URLs used for URL to where fetch project from
28 @git_base_url_list = ('git://git.hcoop.net/git',
29 'http://git.hcoop.net/git');
30
31 # stylesheet to use
32 $stylesheet = "/gitweb.css";
33
34 # logo to use
35 $logo = "/git-logo.png";
36
37 # the 'favicon'
38 $favicon = "/git-favicon.png";
39
40 # features
41 $feature{'snapshot'}{'default'} = ['tgz','zip'];