4
0

config.default.php 669 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. return array(
  3. 'environment' => 'production',
  4. 'salt' => '',
  5. 'base_url' => '',
  6. 'language' => 'en',
  7. 'title' => 'FreshRSS',
  8. 'default_user' => '_',
  9. 'allow_anonymous' => false,
  10. 'allow_anonymous_refresh' => false,
  11. 'auth_type' => 'none',
  12. 'api_enabled' => false,
  13. 'unsafe_autologin_enabled' => false,
  14. 'simplepie_syslog_enabled' => true,
  15. 'limits' => array(
  16. 'cache_duration' => 800,
  17. 'timeout' => 10,
  18. 'max_inactivity' => PHP_INT_MAX,
  19. 'max_feeds' => 16384,
  20. 'max_categories' => 16384,
  21. ),
  22. 'db' => array(
  23. 'type' => 'sqlite',
  24. 'host' => '',
  25. 'user' => '',
  26. 'password' => '',
  27. 'base' => '',
  28. 'prefix' => '',
  29. ),
  30. 'extensions_enabled' => array(),
  31. );