我在Laravel中编写了一个后端,我需要在同一台物理服务器上部署两次。我需要为这些使用两个不同的数据库,但由于它们位于同一台服务器上,因此无法在Laravel中使用内置主机检测。
目前,我已经修复了#34;将配置文件包装在此代码中的问题:
if ($_SERVER["HTTP_HOST"] === "example.com") {
return config array...
} else if ($_SERVER["HTTP_HOST"] === "example.net") {
return config array...
}
但这会打破工匠,所以不再需要php artisan down|up
或php artisan cache:clear
。
必须有更好的方法来实现这一目标,不是吗?
答案 0 :(得分:2)
默认情况下,Laravel会使用您的主机名,但您也可以将闭包传递给detectEnvironment
方法,以使用更复杂的逻辑来设置您的环境。
像这样的东西,例如:
$env = $app->detectEnvironment(function()
{
// if statements because staging and live used the same domain,
// and this app used wildcard subdomains. you could compress this
// to a switch if your logic is simpler.
if (isset($_SERVER['HTTP_HOST']))
{
if (ends_with($_SERVER['HTTP_HOST'], 'local.dev'))
{
return 'local';
}
if (ends_with($_SERVER['HTTP_HOST'], 'staging.server.com'))
{
return 'staging';
}
if (ends_with($_SERVER['HTTP_HOST'], 'server.com'))
{
return 'production';
}
// Make sure there is always an environment set.
throw new RuntimeException('Could not determine the execution environment.');
}
});
这并不与工匠打交道,但是HTTP_HOST
不会被设置在那里。如果不同的站点在不同的用户下运行,您可以使用$_SERVER['USER']
执行另一个单独的switch语句。如果不是,您也可以使用安装路径作为区分方式。