Multitenancy
This commit is contained in:
parent
081a32c928
commit
84597b95ce
|
|
@ -0,0 +1,35 @@
|
|||
<?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',
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Loading…
Reference in New Issue