diff --git a/app/config/jilo-web.conf.php b/app/config/jilo-web.conf.php index 2f008df..790a49a 100644 --- a/app/config/jilo-web.conf.php +++ b/app/config/jilo-web.conf.php @@ -1,20 +1,34 @@ 'localhost', // domain for the web app - 'folder' => '/jilo-web/', // subfolder for the web app, if any - 'jilo_database' => '../../jilo/jilo.db', // database with logs from Jilo + //******************* - 'registration_enabled' => true, // set to false to disable new registrations - 'login_message' => '', // will be displayed on login screen + // domain for the web app + 'domain' => 'localhost', + // subfolder for the web app, if any + 'folder' => '/jilo-web/', + // database with logs from Jilo + 'jilo_database' => '../../jilo/jilo.db', + // set to false to disable new registrations + 'registration_enabled' => true, + // will be displayed on login screen + 'login_message' => '', + //******************************************* // edit only if needed for tests or debugging + //******************************************* + 'db' => [ - 'db_type' => 'sqlite', // DB type for the web app, currently only "sqlite" is used - 'sqlite_file' => '../app/jilo-web.db', // default is ../app/jilo-web.db + // DB type for the web app, currently only "sqlite" is used + 'db_type' => 'sqlite', + // default is ../app/jilo-web.db + 'sqlite_file' => '../app/jilo-web.db', ], - 'version' => '0.1.1', // system info + // system info + 'version' => '0.1.1', ]; ?>