Files
FreshRSS/data/config.default.php
Marien Fressinaud d3a93ea290 BREAKING FEATURE: Remove general in config
General attribute has been removed from system config.
Now subattributes (e.g. environment, salt, title, etc.) are directly accessible.

YOU HAVE TO FIX YOUR ./data/config.php file!

- Remove the general array
- Values inside this array must be kept
- To see what it must look like, please have a look to ./data/config.default.php
  (but keep your values!!).

See https://github.com/FreshRSS/FreshRSS/issues/730
2015-01-06 18:53:36 +01:00

31 lines
598 B
PHP

<?php
return array(
'environment' => 'production',
'salt' => '',
'base_url' => '',
'language' => 'en',
'title' => 'FreshRSS',
'default_user' => '_',
'allow_anonymous' => false,
'allow_anonymous_refresh' => false,
'auth_type' => 'none',
'api_enabled' => false,
'unsafe_autologin_enabled' => false,
'limits' => array(
'cache_duration' => 800,
'timeout' => 10,
'max_inactivity' => PHP_INT_MAX,
'max_feeds' => 16384,
'max_categories' => 16384,
),
'db' => array(
'type' => 'sqlite',
'host' => '',
'user' => '',
'password' => '',
'base' => '',
'prefix' => '',
),
);