2015-03-02 16:59:13 +00:00
|
|
|
<?php
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
use Symfony\Component\Debug\Debug;
|
|
|
|
// If you don't want to setup permissions the proper way, just uncomment the following PHP line
|
2016-12-19 00:23:45 +00:00
|
|
|
// read http://symfony.com/doc/current/book/installation.html#checking-symfony-application-configuration-and-setup
|
|
|
|
// for more information
|
2015-10-05 01:50:10 +00:00
|
|
|
umask(0002);
|
2015-03-02 16:59:13 +00:00
|
|
|
// 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.
|
|
|
|
if (isset($_SERVER['HTTP_CLIENT_IP'])
|
|
|
|
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
2016-12-19 00:23:45 +00:00
|
|
|
|| !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || php_sapi_name() === 'cli-server')
|
2015-03-02 16:59:13 +00:00
|
|
|
) {
|
|
|
|
header('HTTP/1.0 403 Forbidden');
|
|
|
|
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
|
|
|
|
}
|
2016-12-19 00:23:45 +00:00
|
|
|
/**
|
|
|
|
* @var Composer\Autoload\ClassLoader $loader
|
|
|
|
*/
|
|
|
|
//$loader = require __DIR__.'/../app/autoload.php';
|
|
|
|
$loader = require_once __DIR__.'/../app/autoload.php';
|
2015-03-02 16:59:13 +00:00
|
|
|
require_once __DIR__.'/../app/AppKernel.php';
|
2016-12-19 00:23:45 +00:00
|
|
|
Debug::enable();
|
2015-03-02 16:59:13 +00:00
|
|
|
$kernel = new AppKernel('dev', true);
|
2016-12-19 00:23:45 +00:00
|
|
|
//$kernel->loadClassCache();
|
2015-03-02 16:59:13 +00:00
|
|
|
$request = Request::createFromGlobals();
|
|
|
|
$response = $kernel->handle($request);
|
|
|
|
$response->send();
|
2016-12-19 00:23:45 +00:00
|
|
|
$kernel->terminate($request, $response);
|