]> git.wh0rd.org - tt-rss.git/blob - config.php-dist
optional SINGLE_USER_MODE
[tt-rss.git] / config.php-dist
1 <?
2 // PostgreSQL must be configured to accept connections
3 // via TCP/IP and authentified by password.
4
5 define(DB_TYPE, "pgsql"); // or mysql
6 define(DB_HOST, "localhost");
7 define(DB_USER, "fox");
8 define(DB_NAME, "fox");
9 define(DB_PASS, "XXXXXX");
10
11 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
12 // Local cache directory for RSS feeds
13
14 define(WEB_DEMO_MODE, false);
15
16
17 define(USE_HTTP_AUTH, false);
18 // use HTTP Basic authentication
19
20 define(SINGLE_USER_MODE, true);
21 // disable all multi-user stuff altogether and just assume admin user
22 // is always logged in
23
24 ?>