Added a howto on Windows IIS & php-fastcgi.
[viewgit.git] / inc / example-localconfig.php
blob0a743816bd7e08bb40441f4901d6985bfcbc7b68
1 <?php
2 /** @file
3 * Example localconfig.php. See config.php for more information.
4 */
6 // This is the only mandatory setting
7 $conf['projects'] = array(
8 'foo' => array('repo' => '/home/user/projects/foo/.git'),
9 'bar' => array(
10 'repo' => '/home/user/projects/foo/.git',
11 'description' => 'Optional overridden description, otherwise it is taken from .git/description'
15 // A bit sorter datetime format: YY-MM-DD HH:MM
16 $conf['datetime'] = '%y-%m-%d %H:%M';
18 // Extra security
19 $conf['allow_checkout'] = false;