<?php
use App\Kernel;
use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\HttpFoundation\Request;
require dirname(__DIR__).'/config/bootstrap.php';
#var_dump($_SERVER);exit;
/*
if (str_contains($_SERVER['REQUEST_URI'], 'wdt')) {exit;}
if ($_SERVER['HTTP_HOST'] == 'e-roso.net'){
if ((str_contains($_SERVER['REQUEST_URI'], 'admin')&& !str_contains($_SERVER['REQUEST_URI'], 'admincommunes')) || str_contains($_SERVER['REQUEST_URI'], 'avicon')) {
if ( $_SERVER['HTTP_X_FORWARDED_PROTO'] != "http"){
$location = 'http://www.' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$location = str_replace("www.www","www", $location);
//header('HTTP/1.1 301 Moved Permanently');
//header('Location: ' . $location);
//exit;
//
?>
<script type="text/javascript">
window.location.href = '<?php echo $location;?>';
</script>
<?php
exit;
} else {}
//echo 'uuuu';exit;
} else {
if ($_SERVER['HTTP_HOST'] != 'localhost' and $_SERVER['HTTP_X_FORWARDED_PROTO'] != "https") {
$location = 'https://www.' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$location = str_replace("www.www","www", $location);
//header('HTTP/1.1 301 Moved Permanently');
?>
<script type="text/javascript">
window.location.href = '<?php echo $location;?>';
</script>
<?php
exit;
//header('Location: ' . $location);
//exit;
}}
}*/
if ($_SERVER['APP_DEBUG']) {
umask(0000);
Debug::enable();
}
if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? false) {
Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST);
}
if ($trustedHosts = $_SERVER['TRUSTED_HOSTS'] ?? false) {
Request::setTrustedHosts([$trustedHosts]);
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);