73 lines
2.9 KiB
PHP
73 lines
2.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Domain-Konfigurationen
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Diese Konfiguration definiert die verschiedenen Domains und deren
|
|
| zugehörige Einstellungen wie Theme, View-Präfix und andere
|
|
| domainspezifische Konfigurationen.
|
|
|
|
|
*/
|
|
'protocol' => env('APP_PROTOCOL', 'https://'),
|
|
|
|
|
|
'domain_portal' => env('APP_PORTAL_NAME', 'pr-copilot.test'),
|
|
'domain_presseecho' => env('APP_PRESSEECHO_NAME', 'presseecho.test'),
|
|
'domain_businessportal' => env('APP_BUSINESSPORTAL_NAME', 'businessportal24.test'),
|
|
|
|
|
|
'domain_portal_url' => env('APP_PORTAL_URL', 'https://pr-copilot.test'),
|
|
'domain_presseecho_url' => env('APP_PRESSEECHO_URL', 'https://presseecho.test'),
|
|
'domain_businessportal_url' => env('APP_BUSINESSPORTAL_URL', 'https://businessportal24.test'),
|
|
|
|
|
|
'domains' => [
|
|
'portal' => [
|
|
'domain_name' => env('APP_PORTAL_NAME', 'pr-copilot.test'),
|
|
'url' => env('APP_PORTAL_URL', 'https://pr-copilot.test'),
|
|
'asset_url' => 'https://assets.pr-copilot.test',
|
|
'theme' => 'main',
|
|
'view_prefix' => 'portal',
|
|
'assets_dir' => 'build/portal',
|
|
'description' => 'Backend Page PR-Copilot',
|
|
'color_scheme' => [
|
|
'primary' => env('APP_PORTAL_PRIMARY', '#526266'), //
|
|
'secondary' => env('APP_PORTAL_SECONDARY', '#82a0a7'), //
|
|
],
|
|
'font' => 'Montserrat',
|
|
],
|
|
|
|
'presseecho' => [
|
|
'domain_name' => env('APP_PRESSEECHO_NAME', 'presseecho.test'),
|
|
'url' => env('APP_PRESSEECHO_URL', 'https://presseecho.test'),
|
|
'asset_url' => 'https://assets.presseecho.test',
|
|
'theme' => 'presseecho',
|
|
'view_prefix' => 'web',
|
|
'assets_dir' => 'build/web',
|
|
'description' => 'Frontend Page Presseecho',
|
|
'color_scheme' => [
|
|
'primary' => env('APP_PRESSEECHO_PRIMARY', '#345636'), //
|
|
'secondary' => env('APP_PRESSEECHO_SECONDARY', '#6b8f71'), //
|
|
],
|
|
'font' => 'Montserrat',
|
|
],
|
|
|
|
'businessportal24' => [
|
|
'domain_name' => env('APP_BUSINESSPORTAL_NAME', 'businessportal24.test'),
|
|
'url' => env('APP_BUSINESSPORTAL_URL', 'https://businessportal24.test'),
|
|
'asset_url' => 'https://assets.businessportal24.test',
|
|
'theme' => 'businessportal24',
|
|
'view_prefix' => 'web',
|
|
'assets_dir' => 'build/web',
|
|
'description' => 'Frontend Page Businessportal24',
|
|
'color_scheme' => [
|
|
'primary' => env('APP_BUSINESSPORTAL_PRIMARY', '#cf3628'), //
|
|
'secondary' => env('APP_BUSINESSPORTAL_SECONDARY', '#f0834a'), //
|
|
],
|
|
'font' => 'Montserrat',
|
|
],
|
|
],
|
|
];
|