config.default.php 634 B

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