forked from deblan/gist
1
0
Fork 0
gist/web/app_dev.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();