fix: derive MCP portal domain from APP_DOMAIN
Instead of hardcoding mcp.host.uk.com as the default, derive it from APP_DOMAIN env var so it works automatically per environment without needing a separate MCP_DOMAIN override. Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
parent
1ef8157822
commit
8efd939ce4
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'domain' => env('MCP_DOMAIN', 'mcp.host.uk.com'),
|
||||
'domain' => env('MCP_DOMAIN', 'mcp.'.env('APP_DOMAIN', 'host.uk.com')),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
Reference in a new issue