mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
36 lines
998 B
PHP
36 lines
998 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' => 'production',
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| 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',
|
||
|
|
||
|
],
|
||
|
|
||
|
];
|