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.
30 lines
827 B
30 lines
827 B
6 years ago
|
<?php
|
||
|
|
||
|
use App\Kernel;
|
||
|
use Symfony\Component\Debug\Debug;
|
||
|
use Symfony\Component\HttpFoundation\Request;
|
||
|
|
||
|
require dirname(__DIR__).'/vendor/autoload.php';
|
||
|
|
||
|
Kernel::bootstrapEnv();
|
||
|
|
||
|
if ($_SERVER['APP_DEBUG']) {
|
||
|
umask(0000);
|
||
|
|
||
|
Debug::enable();
|
||
|
}
|
||
|
|
||
|
if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? $_ENV['TRUSTED_PROXIES'] ?? false) {
|
||
|
Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST);
|
||
|
}
|
||
|
|
||
|
if ($trustedHosts = $_SERVER['TRUSTED_HOSTS'] ?? $_ENV['TRUSTED_HOSTS'] ?? false) {
|
||
|
Request::setTrustedHosts(explode(',', $trustedHosts));
|
||
|
}
|
||
|
|
||
|
$kernel = new Kernel($_SERVER['APP_ENV'], $_SERVER['APP_DEBUG']);
|
||
|
$request = Request::createFromGlobals();
|
||
|
$response = $kernel->handle($request);
|
||
|
$response->send();
|
||
|
$kernel->terminate($request, $response);
|