48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
//*******************
|
|
// edit to customize
|
|
//*******************
|
|
|
|
// domain for the web app
|
|
'domain' => 'localhost',
|
|
// subfolder for the web app, if any
|
|
'folder' => '/jilo-web/',
|
|
// 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
|
|
//*******************************************
|
|
|
|
// database
|
|
'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',
|
|
],
|
|
// system info
|
|
'version' => '0.1.1',
|
|
// development has verbose error messages, production has not
|
|
'environment' => 'production1',
|
|
|
|
// *************************************
|
|
// Maintained by the app, edit with care
|
|
// *************************************
|
|
|
|
'platforms' => [
|
|
'0' => [
|
|
'name' => 'meet.example.com',
|
|
// database with logs from Jilo
|
|
'jilo_database' => '../../jilo/jilo.db',
|
|
],
|
|
],
|
|
];
|
|
|
|
?>
|