mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
c137760498
This will minimize changes when ConfigWriter is used to set config values through PHP.
33 lines
996 B
PHP
33 lines
996 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Application Environment
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This value determines the "environment" your application is currently
|
|
| running in. This may determine how you prefer to configure various
|
|
| services your application utilizes. Set this in your ".env" file.
|
|
|
|
|
*/
|
|
|
|
'default' => 'development',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Environment Multitenancy
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| You may specify a different environment according to the hostname that
|
|
| is provided with the HTTP request. This is useful if you want to use
|
|
| different configuration, such as database and theme, per hostname.
|
|
|
|
|
*/
|
|
|
|
'hosts' => [
|
|
'localhost' => 'dev',
|
|
],
|
|
];
|