]>
git.p6c8.net - jirafeau_project.git/blob - lib/config.original.php
cd39bb38ed41aded097993e0dca0f6b453e55f85
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 <https://www.gnu.org/licenses/>.
22 * Default configuration
24 * To overwrite these settings copy the file,
25 * rename it to »config.local.php« and adapt the parameters.
28 /* URL of installation, with traling slash (eg. »https://exmaple.com/jirafeau/«)
30 $cfg['web_root'] = '';
32 /* Path to data directory, with trailing slash (eg. »/var/www/data/var_314159265358979323846264«
34 $cfg['var_root'] = '';
36 /* Language - choice between 'auto' or any language located in the /lib/locales/ folder.
37 * The mode »auto« will cause the script to detect the user's browser information
38 * and offer a matching language, and use »en« if it is not available.
40 $cfg['lang'] = 'auto';
42 /* Select a theme - see media folder for available themes
44 $cfg['style'] = 'courgette';
46 /* Name the organisation running this installation, eg. 'ACME'
48 $cfg['organisation'] = 'ACME';
50 /* Provide a contact person for this installation, eg. 'John Doe <doe@example.com>'
52 $cfg['contactperson'] = '';
54 /* Propose a preview link if file type is previewable
56 $cfg['preview'] = true;
58 /* Enable the encryption feature
59 * By enabling it, file-level deduplication won't work anymore. See FAQ.
61 $cfg['enable_crypt'] = false;
63 /* Length of link reference
65 $cfg['link_name_length'] = 8;
67 /* Upload password(s).
68 * An empty array will disable the password authentification.
69 * $cfg['upload_password'] = array(); // No password
70 * $cfg['upload_password'] = array('psw1'); // One password
71 * $cfg['upload_password'] = array('psw1', 'psw2'); // Two passwords
73 $cfg['upload_password'] = array();
75 /* List of IP allowed to upload a file.
76 * If the list is empty, then there is no upload restriction based on IP.
77 * Elements of the list can be a single IP (e.g. "123.45.67.89") or
78 * an IP range (e.g. "123.45.0.0/16").
79 * Note that CIDR notation is available for IPv4 only for the moment.
81 $cfg['upload_ip'] = array();
83 /* Password for the admin interface.
84 * An empty password will disable the password authentification.
85 * The password is a sha256 hash of the original version.
87 $cfg['admin_password'] = '';
89 /* If set, let the user be authenticated as administrator.
90 * The user provided here is the user authenticated by HTTP authentication.
91 * Note that Jirafeau does not manage the HTTP login part, it just checks
92 * that the provided user is logged in.
93 * If »admin_password« parameter is set, then the »admin_password« is ignored.
95 $cfg['admin_http_auth_user'] = '';
97 /* Allow user to select different options for file expiration time.
98 * Possible values in array:
99 * 'minute': file is available for one minute
100 * 'hour': file available for one hour
101 * 'day': file available for one day
102 * 'week': file available for one week
103 * 'month': file is available for one month
104 * 'quarter': file is available for three month
105 * 'year': file available for one year
106 * 'none': unlimited availability
108 $cfg['availabilities'] = array (
119 /* Set a default value for the expiration time.
120 * The value has to equal one of the enabled options in »availabilities«, e.g. »month«.
122 $cfg['availability_default'] = 'month';
124 /* Set maximal upload size expressed in MB.
125 * »0« means unlimited upload size.
127 $cfg['maximal_upload_size'] = 0;
130 * If the installation is behind some reverse proxies, it is possible to set
131 * the allowed proxy IP.
132 * $cfg['proxy_ip'] = array('12.34.56.78');
133 * Jirafeau will then get a visitor's IP from HTTP_X_FORWARDED_FOR
134 * instead of REMOTE_ADDR.
136 $cfg['proxy_ip'] = array();
138 /* Required flag to test if the installation is already installed
139 * or needs to start the installation script
141 $cfg['installation_done'] = false;
patrick-canterino.de