mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-26 03:27:16 -05:00
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
31 lines
598 B
PHP
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' => '',
|
|
),
|
|
);
|