mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
40 lines
1 KiB
PHP
40 lines
1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Sylius package.
|
|
*
|
|
* (c) Paweł Jędrzejewski
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/*
|
|
* Sylius front controller.
|
|
* Testing prod-like environment.
|
|
*/
|
|
|
|
if (isset($_SERVER['HTTP_CLIENT_IP'])
|
|
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
|
|| !(in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1', '113.0.0.1'))
|
|
|| php_sapi_name() === 'cli-server')
|
|
) {
|
|
header('HTTP/1.0 403 Forbidden');
|
|
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
|
|
}
|
|
|
|
$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
|
|
|
|
require_once __DIR__.'/../app/AppKernel.php';
|
|
|
|
$kernel = new AppKernel('test_cached', false);
|
|
$kernel->loadClassCache();
|
|
|
|
$request = Request::createFromGlobals();
|
|
|
|
$response = $kernel->handle($request);
|
|
$response->send();
|
|
|
|
$kernel->terminate($request, $response);
|