summaryrefslogtreecommitdiff
path: root/config.php-dist
diff options
context:
space:
mode:
Diffstat (limited to 'config.php-dist')
-rw-r--r--config.php-dist8
1 files changed, 6 insertions, 2 deletions
diff --git a/config.php-dist b/config.php-dist
index 58218bab1..1eb4a13e4 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -50,7 +50,10 @@
// *****************************
define('PHP_EXECUTABLE', '/usr/bin/php');
- // Path to PHP executable, used for various command-line tt-rss programs
+ // Path to PHP *COMMAND LINE* executable, used for various command-line tt-rss programs and
+ // update daemon. Do not try to use CGI binary here, it won't work. If you see HTTP headers
+ // being displayed while running tt-rss scripts, then most probably you are using the CGI
+ // binary. If you are unsure what to put in here, ask your hosting provider.
define('LOCK_DIRECTORY', 'lock');
// Directory for lockfiles, must be writable to the user you run
@@ -111,9 +114,10 @@
define('SPHINX_SERVER', 'localhost:9312');
// Hostname:port combination for the Sphinx server.
- define('SPHINX_INDEX', 'ttrss');
+ define('SPHINX_INDEX', 'ttrss, delta');
// Index name in Sphinx configuration. You can specify multiple indexes
// as a comma-separated string.
+ // Example configuration files are available on tt-rss wiki.
// ***********************************
// *** Self-registrations by users ***