]> git.wh0rd.org - tt-rss.git/blame - config.php-dist
more login tweaks
[tt-rss.git] / config.php-dist
CommitLineData
8af5db8f 1<?
8b2cbc33 2 // Your RDBMS must be configured to accept connections
f92db4f5 3 // via TCP/IP and authentified by password.
648472a7 4
cce28758
AD
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");
befc807f 10 //define('DB_PORT', '5432'); // when neeeded, PG-only
648472a7 11
a16399e8 12 define('RSS_BACKEND_TYPE', "magpie");
7c5a308d
AD
13 // magpie (stable) or simplepie (EXPERIMENTAL!)
14
a1a8a2be 15 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
f92db4f5 16 // Local cache directory for RSS feeds
7c5a308d
AD
17
18 define('SIMPLEPIE_CACHE_DIR', '/var/tmp/simplepie-ttrss-cache');
19 // Local cache directory for RSS feeds (simplepie)
20
cce28758 21 define('WEB_DEMO_MODE', false);
8b2cbc33 22 // Demo mode with reduced functionality.
13528002
AD
23 // Warning: this option is obsolete. Don't rely on it being
24 // checked in all necessary places.
7a991cac 25
cce28758
AD
26 define('ICONS_DIR', "icons");
27 define('ICONS_URL', "icons");
56a2fd35 28 // Local and URL path to the directory, where feed favicons are stored.
c8437f35 29
cce28758 30 define('USE_HTTP_AUTH', false);
8b2cbc33 31 // Use HTTP Basic authentication instead of login form. Has some problems.
8af5db8f 32
cce28758 33 define('SINGLE_USER_MODE', true);
8b2cbc33
AD
34 // Operate in single user mode, disables all functionality related to
35 // multiple users.
30a49c92 36
cce28758 37 define('DAEMON_REFRESH_ONLY', false);
30a49c92 38 // updates to all feeds will only run when the backend script is
0d436179
AD
39 // invoked with a "daemon" option on the URI stem. This is useful when you
40 // are hosting multi-user system and want to control how often
41 // feeds are being updated.
42
43 // An example wget command line below will invoke an update every 30
44 // minutes, with output being sent to /dev/null and the timeout set to
45 // 10 minutes so that wget does not time out. Substitute your site name
46 // and tt-rss path as necessary.
30a49c92 47 //
0d436179 48 // */30 * * * * /usr/bin/wget -O /dev/null -T 600 "http://www.your-site.xxx/tt-rss/backend.php?op=globalUpdateFeeds&daemon=1"
30a49c92
AD
49 //
50
1f2b01ed 51 // The alternative approach is to run update_feeds.php from your crontab
a47a3f82
AD
52 // with command line PHP interpreter. Don't forget to chdir() into TT-RSS
53 // directory or it won't be able to find includes. E.g.
54 //
55 // */30 * * * * cd $TTRSS_DIRECTORY && ./update_feeds.php >/dev/null 2>&1
b3295162
AD
56
57 // Another alternative approach is to run update_daemon.php in the background
58 // on the server, which allows user-scheduled updates and continous
59 // feed updating in the background. This is the recommended way at the moment.
a47a3f82 60
c3d74dca 61 define('SMART_RPC_COUNTERS', false);
bbc92e50
AD
62 // If enabled, stores feed counter information on the server side and sends
63 // only diffs to the client. In the nutshell, it saves your bandwidth and
c3d74dca
AD
64 // makes UI more responsive, but eats server memory.
65 // This option can introduce a lot of weird interface glitches in
66 // some use-cases (if you have more than one tt-rss window open, for example)
67 // so it is disabled by default.
bbc92e50 68
65cd0f74 69 define('GLOBAL_ENABLE_LABELS', false);
cfaba6df
AD
70 // Labels are a security risk, so this option can globally disable them for all users.
71
75836f33
AD
72 define('ENABLE_LOGIN_SSL', false);
73 // Redirect to SSL url for login
74
72932a75
AD
75 define('MAIL_RESET_PASS', true);
76 // Send mail to user on password reset
77
78 define('MAIL_FROM', 'TT-RSS Daemon <noreply@ttrss.your-shiny-host.org>');
79 // Pretty obvious, I suppose.
e2f728be
AD
80
81 define('ENABLE_FEED_BROWSER', true);
82 // Enable or disable local feed browser
7d7cbaf5
AD
83
84 define('TMP_DIRECTORY', '/tmp');
85 // Directory for temporary files
f5de0d8d
AD
86
87 define('FEEDS_FRAME_REFRESH', 600);
88 // Auto refresh interval for feeds frame (in seconds)
cbd8650d
AD
89
90 define('MAX_UPDATE_TIME', 0);
91 // Limit one update sequence run to this number of seconds.
92 // The valiue is not exact, because it is being checked between feed updates,
93 // which could use abritrary amount of time. Feeds which could not be updated
94 // in time, are being skipped.
95 // If this option is enabled (non-zero) feeds are updated in random order.
96 // It is also recommended to set FEEDS_FRAME_REFRESH to a lower value if using
97 // this option.
de696427 98
085a5a74 99 define('ENABLE_UPDATE_DAEMON', false);
b3295162
AD
100 // This enables different mechanism for user-triggered updates designed
101 // for update daemon running in background on the server.
085a5a74 102 // This option suggests FEEDS_FRAME_REFRESH set to a small value
b2620faa 103 // (like 60 seconds, depending on number of users and server/bandwidth load).
a561fe73 104
78ea1de0
AD
105 define('DAEMON_SLEEP_INTERVAL', 120);
106 // Interval between update daemon update runs
107
03f321db 108 define('DATABASE_BACKED_SESSIONS', false);
2ab29ac6 109 // Store session information in a database, recommended for multiuser
5854b016
AD
110 // configurations. Doesn't seem to work for everyone, so enable with caution.
111 // tt-rss uses default PHP session storing mechanism if disabled.
8fd92701 112
09018e95 113 define('SESSION_CHECK_ADDRESS', true);
916f788a 114 // Bind session to client IP address (recommended)
09018e95 115
377a3e8b 116 define('SESSION_COOKIE_LIFETIME', 0);
5ccc1cf5
AD
117 // Default lifetime of a session cookie. In seconds,
118 // 0 means delete on browser close
119
ff6519f8 120 define('SESSION_COOKIE_LIFETIME_REMEMBER', 86400);
5ccc1cf5 121 // Session cookie lifetime if "remember me" is checked on login.
898a9cdb
AD
122
123 define('SESSION_EXPIRE_TIME', 86400);
124 // Hard expiration limit for sessions. Should be
125 // >= SESSION_COOKIE_LIFETIME_REMEMBER
126
eed55fd3
AD
127 define('DAEMON_UPDATE_LOGIN_LIMIT', 30);
128 // Stop updating feeds of user who was never logged in
129 // in specified amount of days. 0 disables.
130
53558a91 131 define('CONFIG_VERSION', 3);
f2c43604 132 // Expected config version. Please update this option in config.php
fef8a1e4
AD
133 // if necessary (after migrating all new options from this file).
134
72932a75 135 // vim:ft=php
7d4c898a 136?>