]>
git.p6c8.net - jirafeau_mojo42.git/blob - lib/config.original.php
8c30f5e1208a6a223f3b62f24bf3c8e6b9b11d51
3 * Jirafeau, your web file repository
4 * Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
5 * Copyright (C) 2015 Jerome Jutteau <j.jutteau@gmail.com>
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * default configuration
23 * if you want to change this, overwrite in a config.local.php file
27 /* Don't forget the ending '/' */
28 $cfg['web_root'] = '';
29 $cfg['var_root'] = '';
31 /* Lang choice between 'auto', 'en' and 'fr'.
32 * 'auto' mode will take the user's browser informations.
33 * Will take english if user's langage is not available.
35 $cfg['lang'] = 'auto';
36 /* Select your style :) See media folder */
37 $cfg['style'] = 'modern';
38 /* Set preview option.
39 * true: will propose user's browser to preview file if possible.
40 * false: will just download the file, whatever the content is.
42 $cfg['preview'] = true;
44 * true: Will show a download page (with preview if permited and possible).
45 * false: Will directly download file or preview (if permited and possible).
47 $cfg['download_page'] = false;
48 /* Encryption feature. disable it by default.
49 * By enabling it, file-level deduplication won't work.
51 $cfg['enable_crypt'] = false;
52 /* Split lenght of link refenrece. */
53 $cfg['link_name_lenght'] = 8;
54 /* Upload password(s). Empty array disable password authentification.
55 * $cfg['upload_password'] = array(); // No password
56 * $cfg['upload_password'] = array('psw1'); // One password
57 * $cfg['upload_password'] = array('psw1', 'psw2'); // Two passwords
60 $cfg['upload_password'] = array();
61 /* An empty admin password will disable the classic admin password
64 $cfg['admin_password'] = '';
65 /* If set, let's the user to be authenticated as administrator.
66 * The user provided here is the user authenticated by HTTP authentication.
67 * Note that Jirafeau does not manage the HTTP login part, it just check
68 * that the provided user is logged.
69 * If admin_password parameter is also set, admin_password is ignored.
71 $cfg['admin_http_auth_user'] = '';
72 /* Installation is done ? */
73 $cfg['installation_done'] = false;
75 /* Try to include user's local configuration. */
76 if ((basename (__FILE__
) != 'config.local.php')
77 && file_exists (JIRAFEAU_ROOT
.'lib/config.local.php'))
79 require (JIRAFEAU_ROOT
.'lib/config.local.php');
patrick-canterino.de