]> git.wh0rd.org - tt-rss.git/blob - config.php-dist
schema updates, ICONS_DIR/ICONS_URL moved to config.php
[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 define(ICONS_DIR, "icons");
17 define(ICONS_URL, "icons");
18
19 define(USE_HTTP_AUTH, false);
20 // use HTTP Basic authentication
21
22 define(SINGLE_USER_MODE, true);
23 // disable all multi-user stuff altogether and just assume admin user
24 // is always logged in
25
26 ?>