diff options
Diffstat (limited to 'config.php-dist')
| -rw-r--r--[-rwxr-xr-x] | config.php-dist | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/config.php-dist b/config.php-dist index 244390b98..ae34b4f15 100755..100644 --- a/config.php-dist +++ b/config.php-dist @@ -3,12 +3,12 @@ // *** Database configuration (important!) *** // ******************************************* - define('DB_TYPE', "pgsql"); // or mysql - define('DB_HOST', "localhost"); - define('DB_USER', "fox"); - define('DB_NAME', "fox"); - define('DB_PASS', "XXXXXX"); - define('DB_PORT', ''); // usually 5432 for PostgreSQL, 3306 for MySQL + define('DB_TYPE', '%DB_TYPE'); // pgsql or mysql + define('DB_HOST', '%DB_HOST'); + define('DB_USER', '%DB_USER'); + define('DB_NAME', '%DB_NAME'); + define('DB_PASS', '%DB_PASS'); + define('DB_PORT', '%DB_PORT'); // usually 5432 for PostgreSQL, 3306 for MySQL define('MYSQL_CHARSET', 'UTF8'); // Connection charset for MySQL. If you have a legacy database and/or experience @@ -18,9 +18,9 @@ // *** Basic settings (important!) *** // *********************************** - define('SELF_URL_PATH', 'https://example.org/tt-rss/'); + define('SELF_URL_PATH', '%SELF_URL_PATH'); // This should be set to a fully qualified URL used to access - // your tt-rss instance over the net. + // your tt-rss instance over the net, such as: https://example.org/tt-rss/ // The value should be a constant string literal. Please don't use // PHP server variables here - you might introduce security // issues on your install and cause hard to debug problems. @@ -38,7 +38,7 @@ // background processes while not running tt-rss, this method is generally // viable to keep your feeds up to date. // Still, there are more robust (and recommended) updating methods - // available, you can read about them here: http://tt-rss.org/wiki/UpdatingFeeds + // available, you can read about them here: https://tt-rss.org/wiki/UpdatingFeeds // ***************************** // *** Files and directories *** |