From dac9924907323df756a42c3d6a8c32ca8a76b295 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Wed, 24 Nov 2010 09:06:02 +0100 Subject: [PATCH] gitweb: Update config after upgrade. --- etc/gitweb.conf | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/etc/gitweb.conf b/etc/gitweb.conf index 613141b..17cb61d 100644 --- a/etc/gitweb.conf +++ b/etc/gitweb.conf @@ -1,5 +1,5 @@ # path to git projects (.git) -$projectroot = "/data/vcs/git"; +$projectroot = "/var/cache/git"; # directory to use for temp files $git_temp = "/tmp"; @@ -13,20 +13,28 @@ $home_text = "indextext.html"; # file with project list; by default, simply scan the projectroot dir. $projects_list = $projectroot; -# Make the description a bit wider (now most descriptions fit. This does look -# less pretty on 1024 pixels wide screens, but well.) -$projects_list_description_width = 50; - # stylesheet to use -$stylesheet = "/gitweb.css"; +$stylesheet = "gitweb.css"; + +# javascript code for gitweb +$javascript = "gitweb.js"; # logo to use -$logo = "/git-logo.png"; +$logo = "git-logo.png"; # the 'favicon' -$favicon = "/git-favicon.png"; +$favicon = "git-favicon.png"; + +# Local additions: + +$projectroot = "/data/vcs/git"; +$projects_list = $projectroot; + +# Make the description a bit wider (now most descriptions fit. This does look +# less pretty on 1024 pixels wide screens, but well.) +$projects_list_description_width = 50; @git_base_url_list = ( "http://git.stderr.nl", "ssh://git.stderr.nl" -) +); -- 2.30.2