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

41 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2024-07-01 09:45:07 +00:00
<?php
2024-08-13 14:53:52 +00:00
return [
2024-08-13 19:59:11 +00:00
//*******************
2024-08-13 11:24:56 +00:00
// edit to customize
2024-08-13 19:59:11 +00:00
//*******************
2024-08-10 18:42:44 +00:00
2024-08-13 19:59:11 +00:00
// 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' => '',
2024-08-10 18:42:44 +00:00
2024-08-13 19:59:11 +00:00
//*******************************************
2024-08-13 11:24:56 +00:00
// edit only if needed for tests or debugging
2024-08-13 19:59:11 +00:00
//*******************************************
// database
2024-08-13 14:53:52 +00:00
'db' => [
2024-08-13 19:59:11 +00:00
// 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',
2024-08-13 14:53:52 +00:00
],
2024-09-08 11:15:08 +00:00
// avatars path
'avatars_path' => 'uploads/avatars/',
// default avatar
'default_avatar' => 'static/default_avatar.png',
2024-08-13 19:59:11 +00:00
// system info
2024-08-31 17:24:12 +00:00
'version' => '0.2',
// development has verbose error messages, production has not
'environment' => 'development',
2024-07-01 09:45:07 +00:00
];
?>