2016-03-29 19:26:13 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2018-12-23 16:26:39 +00:00
|
|
|
* Default system settings.
|
|
|
|
*
|
|
|
|
* Changes to these config files are not supported by BookStack and may break upon updates.
|
|
|
|
* Configuration should be altered via the `.env` file or environment variables.
|
|
|
|
* Do not edit this file unless you're happy to maintain any changes yourself.
|
2016-03-29 19:26:13 +01:00
|
|
|
*/
|
2018-12-23 16:26:39 +00:00
|
|
|
|
2016-03-29 19:26:13 +01:00
|
|
|
return [
|
|
|
|
|
2018-12-23 16:26:39 +00:00
|
|
|
'app-name' => 'BookStack',
|
|
|
|
'app-logo' => '',
|
|
|
|
'app-name-header' => true,
|
|
|
|
'app-editor' => 'wysiwyg',
|
2019-08-25 16:19:56 +01:00
|
|
|
'app-color' => '#206ea7',
|
|
|
|
'app-color-light' => 'rgba(32,110,167,0.15)',
|
2018-12-23 16:26:39 +00:00
|
|
|
'app-custom-head' => false,
|
2016-10-30 11:33:56 +00:00
|
|
|
'registration-enabled' => false,
|
2016-03-29 19:26:13 +01:00
|
|
|
|
2019-09-15 18:29:51 +01:00
|
|
|
];
|