You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
561B

  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. 'keycloak' => [
  5. 'base_url' => getenv('KEYCLOAK_BASE_URL') ?: '',
  6. 'realm' => getenv('KEYCLOAK_REALM') ?: '',
  7. 'client_id' => getenv('KEYCLOAK_CLIENT_ID') ?: '',
  8. 'client_secret' => getenv('KEYCLOAK_CLIENT_SECRET') ?: '',
  9. 'redirect_uri' => getenv('KEYCLOAK_REDIRECT_URI') ?: '',
  10. 'post_logout_redirect_uri' => getenv('APP_URL') ?: 'http://localhost:8000',
  11. ],
  12. ];

Powered by TurnKey Linux.