]> BookStack Code Mirror - bookstack/blobdiff - config/setting-defaults.php
Update maintenance.php
[bookstack] / config / setting-defaults.php
index 5482c13315e8012f9f90f89644e765d895eb1569..b48253eb190f1cc408c50fc944bc41b8a8d79f28 100644 (file)
@@ -1,14 +1,22 @@
 <?php
 
 /**
- * The defaults for the system settings that are saved in the database.
+ * 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.
  */
+
 return [
 
-    'app-name'        => 'BookStack',
-    'app-name-header' => true,
-    'app-editor'      => 'wysiwyg',
-    'app-color'       => '#0288D1',
-    'app-color-light' => 'rgba(21, 101, 192, 0.15)'
+    'app-name'             => 'BookStack',
+    'app-logo'             => '',
+    'app-name-header'      => true,
+    'app-editor'           => 'wysiwyg',
+    'app-color'            => '#0288D1',
+    'app-color-light'      => 'rgba(21, 101, 192, 0.15)',
+    'app-custom-head'      => false,
+    'registration-enabled' => false,
 
 ];
\ No newline at end of file