]>
git.p6c8.net - jirafeau_project.git/blob - lib/config.original.php
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'] = 'courgette';
38 /* Propose a preview link if file type is previewable is set to true. */
39 $cfg['preview'] = true;
40 /* Download page: propose a link to a download page is set to true. */
41 $cfg['download_page'] = true;
42 /* Encryption feature. disable it by default.
43 * By enabling it, file-level deduplication won't work.
45 $cfg['enable_crypt'] = false;
46 /* Split length of link refenrece. */
47 $cfg['link_name_length'] = 8;
48 /* Upload password(s). Empty array disable password authentification.
49 * $cfg['upload_password'] = array(); // No password
50 * $cfg['upload_password'] = array('psw1'); // One password
51 * $cfg['upload_password'] = array('psw1', 'psw2'); // Two passwords
54 $cfg['upload_password'] = array();
55 /* An empty admin password will disable the classic admin password
58 $cfg['admin_password'] = '';
59 /* If set, let's the user to be authenticated as administrator.
60 * The user provided here is the user authenticated by HTTP authentication.
61 * Note that Jirafeau does not manage the HTTP login part, it just check
62 * that the provided user is logged.
63 * If admin_password parameter is also set, admin_password is ignored.
65 $cfg['admin_http_auth_user'] = '';
66 /* Select different options for availability of uploaded files.
67 * Possible values in array:
68 * 'minute': file is available for one minute
69 * 'hour': file available for one hour
70 * 'day': file available for one day
71 * 'week': file available for one week
72 * 'month': file is available for one month
73 * 'year': file available for one year
74 * 'none': unlimited availability
76 $cfg['availabilities'] = array ('minute' => true,
83 /* Set maximal upload size expressed in MB.
84 * 0 mean unlimited upload size.
86 $cfg['maximal_upload_size'] = 0;
87 /* Installation is done ? */
88 $cfg['installation_done'] = false;
90 /* Try to include user's local configuration. */
91 if ((basename (__FILE__
) != 'config.local.php')
92 && file_exists (JIRAFEAU_ROOT
.'lib/config.local.php'))
94 require (JIRAFEAU_ROOT
.'lib/config.local.php');
patrick-canterino.de