From 72dbc47301be66259d1c31b19b400718fea667cf Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Tue, 9 Dec 2014 19:41:10 +0100 Subject: [PATCH] fix default phalcon configuration --- src/opnsense/mvc/app/config/config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/opnsense/mvc/app/config/config.php b/src/opnsense/mvc/app/config/config.php index 8c6edf6cb..1d8c8bfb1 100644 --- a/src/opnsense/mvc/app/config/config.php +++ b/src/opnsense/mvc/app/config/config.php @@ -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 ) ));