config: Use -B in diff options.
[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 # the width (in characters) of the projects list "Description" column
28 $projects_list_description_width = 40;
29
30 # list of git base URLs used for URL to where fetch project from
31 @git_base_url_list = ('git://git.hcoop.net/git',
32 'http://git.hcoop.net/git');
33
34 # stylesheet to use
35 $stylesheet = "/gitweb.css";
36
37 # logo to use
38 $logo = "/git-logo.png";
39
40 # the 'favicon'
41 $favicon = "/git-favicon.png";
42
43 # features
44 $feature{'snapshot'}{'default'} = ['tgz','zip'];
45
46 # rename detection options for git-diff and git-diff-tree
47 @diff_opts = ('-B', '-M');