From 84597b95cefec4fcd0977e5c86152bedc5351247 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Fri, 19 May 2017 22:47:26 +1000 Subject: [PATCH] Multitenancy --- config/environment.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 config/environment.php diff --git a/config/environment.php b/config/environment.php new file mode 100644 index 000000000..bbd93ff20 --- /dev/null +++ b/config/environment.php @@ -0,0 +1,35 @@ + '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', + + ], + +];