1
<?php
2
	// Location of the Git binary
3
	$GIT = "/usr/local/git/bin/git";
4
5
	// Base URL of the wigit instalation. This will be prepended to all links
6
	// to internal files.
7
	$BASE_URL = "/wigit";
8
9
	// The script to which all requests should be passed. The default is 
10
	// $BASE_URL/index.php?r= , which should work on all installations. If you
11
	// want to use pretty URLs, set this to $BASE_URL. (see README)
12
	$SCRIPT_URL = "$BASE_URL/index.php?r=";
13
	//$SCRIPT_URL = "$BASE_URL";
14
15
	// Title of the wiki
16
	$TITLE = "WiGit";
17
18
	// Home page. This page is linked in the navigation bar, and is the default
19
	// page that will be opened.
20
	$DEFAULT_PAGE = "Home";
21
22
	// Dir that contains the data files (i.e. the Git repository). This directory
23
	// must be writable by the web server.
24
	$DATA_DIR = "data";
25
26
	// The default author of the git commits.
27
	$DEFAULT_AUTHOR = 'Anonymous <anonymous@wigit>';
28
29
	// Set the mappings from HTTP username to Git commit author.
30
  $AUTHORS = array(
31
    "remko" => "Remko Tronçon <git@el-tramo.be>",
32
    "guest" => "Guest <guest@el-tramo.be>"
33
  );
34
?>