index.php 709 Bytes
<?php
use Yaf\Application;
use Yaf\Dispatcher;


header("server: YH-" . (getenv('APPLICATION_HOST') ? getenv('APPLICATION_HOST') : 'local'));
define('APPLICATION_PATH', dirname(__DIR__));
define('APP_HTTP_HOST', $_SERVER['HTTP_HOST']);
###########################################################################################
defined('APPLICATION_ENV') || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'developer'));
###########################################################################################
$application = new Application(APPLICATION_PATH . "/configs/application.ini");
Dispatcher::getInstance()->flushInstantly(TRUE);
$application->bootstrap()->run();