jilo-web/app/config/jilo-web.conf.php

21 lines
699 B
PHP
Raw Normal View History

2024-07-01 09:45:07 +00:00
<?php
2024-08-13 14:53:52 +00:00
return [
2024-08-13 11:24:56 +00:00
// edit to customize
'domain' => '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
2024-08-10 18:42:44 +00:00
2024-08-13 11:24:56 +00:00
'registration_enabled' => true, // set to false to disable new registrations
'login_message' => '', // will be displayed on login screen
2024-08-10 18:42:44 +00:00
2024-08-13 11:24:56 +00:00
// edit only if needed for tests or debugging
2024-08-13 14:53:52 +00:00
'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
],
2024-08-13 11:24:56 +00:00
'version' => '0.1.1', // system info
2024-07-01 09:45:07 +00:00
];
?>