]> git.p6c8.net - jirafeau_mojo42.git/blob - pub/lib/config.php
33211eae2824382b7b16fa65eed60edf9c8a33f3
[jirafeau_mojo42.git] / pub / lib / config.php
1 <?php
2 /*
3 * Jyraphe, your web file repository
4 * Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /*
21 * default configuration
22 * if you want to change this, overwrite in a config.local.php file
23 */
24
25 // don't forget the ending '/'
26 $cfg['web_root'] = '';
27
28 $cfg['var_root'] = '';
29
30 $cfg['lang'] = '';
31
32 $cfg['style'] = 'default';
33
34 $cfg['rewrite'] = false;
35
36 $cfg['password'] = '';
37
38 if((basename(__FILE__) != 'config.local.php') && file_exists(JYRAPHE_ROOT . 'lib/config.local.php')) {
39 require(JYRAPHE_ROOT . 'lib/config.local.php');
40 }
41
42 ?>

patrick-canterino.de