summaryrefslogtreecommitdiff
path: root/config.php-dist
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-19 12:44:05 +0100
committerAndrew Dolgov <[email protected]>2005-11-19 12:44:05 +0100
commit8b2cbc332bb0ea9e8ef30f26a30b1c097227c7a5 (patch)
tree357d4a9ad31bbc42d8656e438138e5d5c762f771 /config.php-dist
parent690c1c4816af675eaed32b8e178cbb100b7e46d0 (diff)
update config.php-dist
Diffstat (limited to 'config.php-dist')
-rw-r--r--config.php-dist11
1 files changed, 6 insertions, 5 deletions
diff --git a/config.php-dist b/config.php-dist
index 3af61c32f..6564da668 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -1,5 +1,5 @@
<?
- // PostgreSQL must be configured to accept connections
+ // Your RDBMS must be configured to accept connections
// via TCP/IP and authentified by password.
define(DB_TYPE, "pgsql"); // or mysql
@@ -12,15 +12,16 @@
// Local cache directory for RSS feeds
define(WEB_DEMO_MODE, false);
+ // Demo mode with reduced functionality.
define(ICONS_DIR, "icons");
define(ICONS_URL, "icons");
define(USE_HTTP_AUTH, false);
- // use HTTP Basic authentication
+ // Use HTTP Basic authentication instead of login form. Has some problems.
define(SINGLE_USER_MODE, true);
- // disable all multi-user stuff altogether and just assume admin user
- // is always logged in
-
+ // Operate in single user mode, disables all functionality related to
+ // multiple users.
+
?>