Initial commit
This commit is contained in:
22
site/config/config.php
Normal file
22
site/config/config.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* The config file is optional. It accepts a return array with config options
|
||||
* Note: Never include more than one return statement, all options go within this single return array
|
||||
* In this example, we set debugging to true, so that errors are displayed onscreen.
|
||||
* This setting must be set to false in production.
|
||||
* All config options: https://getkirby.com/docs/reference/system/options
|
||||
*/
|
||||
return [
|
||||
'url' => 'https://robbis.space',
|
||||
'server' => [
|
||||
'HTTP_HOST' => 'robbis.space',
|
||||
'SERVER_NAME' => 'robbis.space',
|
||||
'HTTP_X_FORWARDED_HOST' => 'robbis.space',
|
||||
'HTTPS' => 'on',
|
||||
],
|
||||
'panel' => [
|
||||
'install' => true,
|
||||
],
|
||||
'debug' => true,
|
||||
];
|
||||
Reference in New Issue
Block a user