33 lines
1.7 KiB
PHP
Executable File
33 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
use Symfony\Component\Dotenv\Dotenv;
|
|
|
|
require dirname(__DIR__).'/../autoload.php';
|
|
|
|
if (!class_exists(Dotenv::class)) {
|
|
throw new LogicException('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application.');
|
|
}
|
|
|
|
$reflection = new ReflectionClass(Dotenv::class);
|
|
$vendorRootPath = dirname($reflection->getFileName(), 4);
|
|
|
|
// Load cached env vars if the .env.local.php file exists
|
|
// Run "composer dump-env prod" to create it (requires symfony/flex >=1.2)
|
|
if (is_array($env = @include $vendorRootPath.'/.env.local.php') && (!isset($env['APP_ENV']) || ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? $env['APP_ENV']) === $env['APP_ENV'])) {
|
|
(new Dotenv(false))->populate($env);
|
|
} else {
|
|
// load all the .env files
|
|
(new Dotenv())->loadEnv($vendorRootPath.'/.env', null, 'prod');
|
|
}
|
|
|
|
$_SERVER += $_ENV;
|
|
$_SERVER['MAUTIC_TABLE_PREFIX'] = $_ENV['MAUTIC_TABLE_PREFIX'] = ($_SERVER['MAUTIC_TABLE_PREFIX'] ?? $_ENV['MAUTIC_TABLE_PREFIX'] ?? null) ?: '';
|
|
$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'prod';
|
|
$_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV'];
|
|
$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';
|
|
$_SERVER['IPS_ALLOWED'] = $_ENV['IPS_ALLOWED'] = ($_SERVER['IPS_ALLOWED'] ?? $_ENV['IPS_ALLOWED'] ?? null) ?: '127.0.0.1,::1,172.17.0.1';
|
|
|
|
if ('dev' === strtolower($_SERVER['APP_ENV']) && extension_loaded('apcu') && in_array(@$_SERVER['REMOTE_ADDR'], explode(',', $_SERVER['IPS_ALLOWED']))) {
|
|
@apcu_clear_cache();
|
|
}
|