mirror of https://github.com/Maecenas/tt-rss.git
An unofficial mirror of the Tiny Tiny RSS, an open-source RSS feed reader and aggregator
https://git.tt-rss.org/fox/tt-rss
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
518 B
18 lines
518 B
<?php |
|
/* |
|
This file can be used to customize global defaults if environment method is not available (i.e. no Docker). |
|
|
|
Use the following syntax to override defaults (options are declared in classes/config.php, prefixed by TTRSS_): |
|
|
|
putenv('TTRSS_DB_HOST=myserver'); |
|
putenv('TTRSS_SELF_URL_PATH=http://example.com/tt-rss'); |
|
|
|
Plugin-required constants also go here, using define(): |
|
|
|
define('LEGACY_CONSTANT', 'value'); |
|
|
|
etc. |
|
|
|
See this page for more information: https://tt-rss.org/wiki/GlobalConfig |
|
*/ |
|
|
|
|