Files
desktop/config/keycloak.php
Lars Gebhardt-Kusche 1ae7b98378
All checks were successful
Deploy / deploy-staging (push) Successful in 46s
Deploy / deploy-production (push) Has been skipped
keycloak
2026-06-08 02:45:36 +02:00

23 lines
695 B
PHP

<?php
declare(strict_types=1);
return [
'enabled' => true,
'enforce_login' => true,
'allow_desktop_preview' => false,
'desktop_preview_query_key' => 'preview-desktop',
'base_url' => 'https://auth.kusche.berlin',
'realm' => 'KuscheBerlin',
'client_id' => 'desktop-kusche-berlin',
'client_secret' => 'aeBX6f65E0RlNfksHldekcWgP37JDLRw',
'redirect_path' => '/auth/callback',
'scopes' => ['openid', 'profile', 'email'],
'extra_authorize_params' => [],
'branding' => [
'product_name' => 'Kusche.Berlin',
'headline' => 'Desktop Login',
'subheadline' => 'Geschuetzter Zugang zur Desktop-Shell und kuenftigen Modulen.',
],
];