X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/364d1c4437c45eda91dd0b8c5e92a098578f8b39..078a50aeed0f055af710b51bc71f109d8ffc1318:/lib/config.original.php?ds=sidebyside diff --git a/lib/config.original.php b/lib/config.original.php index 755b762..b07f0e2 100644 --- a/lib/config.original.php +++ b/lib/config.original.php @@ -15,15 +15,15 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . + * along with this program. If not, see . */ - + /* * default configuration * if you want to change this, overwrite in a config.local.php file */ global $cfg; - + /* Don't forget the ending '/' */ $cfg['web_root'] = ''; $cfg['var_root'] = ''; @@ -85,10 +85,21 @@ $cfg['availabilities'] = array ('minute' => true, 'month' => true, 'year' => false, 'none' => false); +/* Set a default value for the expiration time. + * The value has to equal one of the enabled options in »availabilities«, e.g. »month«) + */ +$cfg['availability_default'] = 'month'; /* Set maximal upload size expressed in MB. * 0 mean unlimited upload size. */ $cfg['maximal_upload_size'] = 0; +/* If your Jirafeau is behind some reverse proxies, you can set there IPs + * so Jirafeau get visitor's IP from HTTP_X_FORWARDED_FOR instead of + * REMOTE_ADDR. + * for example: + * $cfg['proxy_ip'] = array('12.34.56.78'); + */ +$cfg['proxy_ip'] = array(); /* Installation is done ? */ $cfg['installation_done'] = false;