remko / wigit

WiGit

This URL has Read+Write access

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