Move some of our customizations out into gitweb.conf.
[hcoop/zz_old/gitweb.git] / gitweb.conf
index 6a5c888..4256c3f 100644 (file)
@@ -1,3 +1,5 @@
+# -*- Perl -*-
+
 # path to git projects (<project>.git)
 $projectroot = "/var/cache/git";
 
@@ -11,11 +13,21 @@ $git_temp = "/tmp";
 $home_link_str = "HCoop";
 
 # html text to include at home page
-$home_text = "indextext.html";
+$home_text = "/var/local/lib/gitweb/indextext.html";
+
+# filename of cached version of front page
+$cached_front_page = "/var/local/lib/gitweb/indexcache.html";
+
+# name of site
+$site_name = "HCoop Git";
 
 # file with project list; by default, simply scan the projectroot dir.
 $projects_list = $projectroot;
 
+# list of git base URLs used for URL to where fetch project from
+@git_base_url_list = ('git://git.hcoop.net/git',                            
+                      'http://git.hcoop.net/git');
+
 # stylesheet to use
 $stylesheet = "/gitweb.css";