1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-02 16:19:15 +00:00

add registration script and required config options

This commit is contained in:
Andrew Dolgov
2009-01-19 08:13:36 +01:00
parent bf996dfab4
commit 4f7956b3df
3 changed files with 366 additions and 1 deletions

View File

@@ -184,6 +184,19 @@
define('PHP_EXECUTABLE', '/usr/bin/php');
// Path to PHP executable
define('ENABLE_REGISTRATION', false);
// Allow users to register themselves. Please be vary that allowing
// random people to access your tt-rss installation is a security risk
// and potentially might lead to data loss or server exploit. Disabled
// by default.
define('REG_NOTIFY_ADDRESS', 'user@your.domain.dom');
// Email address to send new user notifications to.
define('REG_MAX_USERS', 10);
// Maximum amount of users which will be allowed to register on this
// system. 0 - no limit.
define('CONFIG_VERSION', 18);
// Expected config version. Please update this option in config.php
// if necessary (after migrating all new options from this file).