aboutsummaryrefslogtreecommitdiff
path: root/data/config.default.php
blob: 97df3a299e7ea17ff737d4e210b42d4fc1b16978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?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' => '',
	),
	'extensions_enabled' => array(),
);