mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 17:15:25 +03:00
3e1a8b29d9
Also fix a problem with bin/cache-prune and FileCache and its enable_purge option
13 lines
347 B
PHP
13 lines
347 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$config = [];
|
|
if (file_exists(__DIR__ . '/../config.ini.php')) {
|
|
$config = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED);
|
|
if (!$config) {
|
|
http_response_code(500);
|
|
exit("Error parsing config.ini.php\n");
|
|
}
|
|
}
|
|
Configuration::loadConfiguration($config, getenv());
|