From 26af12f4a744e7f18c34fc62d0fffe22e72400f3 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 24 Nov 2008 22:51:18 +0100 Subject: [PATCH] gitweb: Add default config file. --- etc/gitweb.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 etc/gitweb.conf diff --git a/etc/gitweb.conf b/etc/gitweb.conf new file mode 100644 index 0000000..b673301 --- /dev/null +++ b/etc/gitweb.conf @@ -0,0 +1,23 @@ +# path to git projects (.git) +$projectroot = "/var/cache/git"; + +# directory to use for temp files +$git_temp = "/tmp"; + +# target of the home link on top of all pages +#$home_link = $my_uri || "/"; + +# html text to include at home page +$home_text = "indextext.html"; + +# file with project list; by default, simply scan the projectroot dir. +$projects_list = $projectroot; + +# stylesheet to use +$stylesheet = "/gitweb.css"; + +# logo to use +$logo = "/git-logo.png"; + +# the 'favicon' +$favicon = "/git-favicon.png"; -- 2.30.2