config.default.php 632 B

12345678910111213141516171819202122232425262728293031
  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. 'limits' => array(
  15. 'cache_duration' => 800,
  16. 'timeout' => 10,
  17. 'max_inactivity' => PHP_INT_MAX,
  18. 'max_feeds' => 16384,
  19. 'max_categories' => 16384,
  20. ),
  21. 'db' => array(
  22. 'type' => 'sqlite',
  23. 'host' => '',
  24. 'user' => '',
  25. 'password' => '',
  26. 'base' => '',
  27. 'prefix' => '',
  28. ),
  29. 'extensions_enabled' => array(),
  30. );