mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 11:00:40 +08:00
- Removed all native PHP session functions as they bypass the Symfony event system. Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
31 lines
876 B
PHP
31 lines
876 B
PHP
<?php
|
|
|
|
use App\Kernel;
|
|
use Symfony\Component\ErrorHandler\Debug;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
require __DIR__ . '/config/bootstrap.php';
|
|
|
|
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([$trustedHosts]);
|
|
}
|
|
|
|
// Get the autoloader class
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
$kernel = new Kernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
|
|
$request = Request::createFromGlobals();
|
|
$response = $kernel->handle($request);
|
|
$response->send();
|
|
$kernel->terminate($request, $response);
|