mirror of
https://gitnet.fr/deblan/gist.git
synced 2021-08-14 08:30:49 +02:00
15 lines
366 B
PHP
15 lines
366 B
PHP
|
<?php
|
||
|
|
||
|
if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
||
|
|| !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1'))
|
||
|
) {
|
||
|
header('HTTP/1.0 403 Forbidden');
|
||
|
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
|
||
|
}
|
||
|
|
||
|
$app = require __DIR__.'/../app/bootstrap.php';
|
||
|
|
||
|
$app['env'] = 'dev';
|
||
|
|
||
|
$app->run();
|