2015-01-22 07:30:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Symfony\Component\Debug\Debug;
|
2018-10-24 19:02:35 +00:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2015-01-22 07:30:07 +00:00
|
|
|
|
|
|
|
// If you don't want to setup permissions the proper way, just uncomment the following PHP line
|
2018-10-24 19:02:35 +00:00
|
|
|
// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
|
2015-12-22 12:00:37 +00:00
|
|
|
// for more information
|
2015-01-22 07:30:07 +00:00
|
|
|
//umask(0000);
|
|
|
|
|
|
|
|
// This check prevents access to debug front controllers that are deployed by accident to production servers.
|
|
|
|
// Feel free to remove this, extend it, or make something more sophisticated.
|
2015-01-28 20:28:12 +00:00
|
|
|
if (isset($_SERVER['HTTP_CLIENT_IP'])
|
|
|
|
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
2018-10-24 19:02:35 +00:00
|
|
|
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'], true) || PHP_SAPI === 'cli-server')
|
2015-01-28 20:28:12 +00:00
|
|
|
) {
|
|
|
|
header('HTTP/1.0 403 Forbidden');
|
|
|
|
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
|
|
|
|
}
|
2015-01-22 07:30:07 +00:00
|
|
|
|
2018-10-24 19:02:35 +00:00
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
2015-01-22 07:30:07 +00:00
|
|
|
Debug::enable();
|
|
|
|
|
|
|
|
$kernel = new AppKernel('dev', true);
|
|
|
|
$request = Request::createFromGlobals();
|
|
|
|
$response = $kernel->handle($request);
|
|
|
|
$response->send();
|
|
|
|
$kernel->terminate($request, $response);
|