fix default phalcon configuration

This commit is contained in:
Ad Schellevis 2014-12-09 19:41:10 +01:00
parent e5b4cfc70d
commit 72dbc47301

View File

@ -18,11 +18,11 @@ return new \Phalcon\Config(array(
'baseUri' => '/opnsense_gui/',
),
'globals' => array(
'config_path' => __DIR__ . '/../../test/conf/',
'temp_path' => __DIR__ . '/../../test/tmp/',
'vardb_path' => __DIR__ . '/../../test/tmp/',
'debug' => true,
'simulate_mode' => true
'config_path' => '/conf/',
'temp_path' => '/tmp/',
'vardb_path' => '/var/db/',
'debug' => false,
'simulate_mode' => false
)
));