defines can be configured
especially useful to define different paths for CACHE and WHITELIST
This commit is contained in:
parent
a86f5e72e8
commit
0af3dfa3cf
1 changed files with 8 additions and 3 deletions
|
@ -1,12 +1,17 @@
|
|||
<?php
|
||||
require_once __DIR__ . '/lib/RssBridge.php';
|
||||
|
||||
include __DIR__ . '/config.defines.php';
|
||||
|
||||
if(!defined('PHP_VERSION_REQUIRED'))
|
||||
define('PHP_VERSION_REQUIRED', '5.6.0');
|
||||
|
||||
// Specify directory for cached files (using FileCache)
|
||||
define('CACHE_DIR', '/var/cache/rss-bridge');
|
||||
if(!defined('CACHE_DIR'))
|
||||
define('CACHE_DIR', __DIR__ . '/cache');
|
||||
|
||||
// Specify path for whitelist file
|
||||
if(!defined('WHITELIST_FILE'))
|
||||
define('WHITELIST_FILE', __DIR__ . '/whitelist.txt');
|
||||
|
||||
Configuration::verifyInstallation();
|
||||
|
|
Loading…
Reference in a new issue