Files

65 lines
3.3 KiB
PHP
Raw Permalink Normal View History

2026-05-17 11:52:23 +02:00
<?php
// config/config.php
return [
'db' => [
'host' => getenv('DB_HOST') ?: 'localhost',
'port' => getenv('DB_PORT') ?: 3306,
'dbname' => getenv('DB_NAME') ?: 'totp',
'user' => getenv('DB_USER') ?: 'user',
'password' => getenv('DB_PASSWORD') ?: 'password',
'charset' => 'utf8mb4',
],
'encryption_key' => getenv('ENCRYPTION_KEY') ?: 'ThisIsA32ByteKeyForLocalTesting!', //Change this!
'app_name' => 'TOTPVault',
'app_url' => rtrim(getenv('APP_URL') ?: 'https://totp.token2.swiss', '/'),
'app_env' => getenv('APP_ENV') ?: 'production',
'mail' => [
'from_email' => getenv('MAIL_FROM') ?: 'noreply@totp.token2.swiss',
'from_name' => getenv('MAIL_FROM_NAME') ?: 'TOTPVault',
'mailersend_key' => getenv('MAILERSEND_KEY') ?: 'mlsn.xxxx',
],
'oauth' => [
'google' => [
'client_id' => getenv('GOOGLE_CLIENT_ID') ?: '',
'client_secret' => getenv('GOOGLE_CLIENT_SECRET') ?: '',
'redirect_uri' => (getenv('APP_URL') ?: 'https://totp.token2.swiss') . '/auth/callback/google',
'auth_url' => 'https://accounts.google.com/o/oauth2/v2/auth',
'token_url' => 'https://oauth2.googleapis.com/token',
'userinfo_url' => 'https://www.googleapis.com/oauth2/v3/userinfo',
'scope' => 'openid email profile',
],
'microsoft' => [
'client_id' => getenv('MICROSOFT_CLIENT_ID') ?: '',
'client_secret' => getenv('MICROSOFT_CLIENT_SECRET') ?: '',
'redirect_uri' => (getenv('APP_URL') ?: 'https://totp.token2.swiss') . '/auth/callback/microsoft',
'auth_url' => 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize',
'token_url' => 'https://login.microsoftonline.com/common/oauth2/v2.0/token',
'userinfo_url' => 'https://graph.microsoft.com/v1.0/me',
'scope' => 'openid email profile User.Read',
],
'github' => [
'client_id' => getenv('GITHUB_CLIENT_ID') ?: '',
'client_secret' => getenv('GITHUB_CLIENT_SECRET') ?: '',
'redirect_uri' => (getenv('APP_URL') ?: 'https://totp.token2.swiss') . '/auth/callback/github',
'auth_url' => 'https://github.com/login/oauth/authorize',
'token_url' => 'https://github.com/login/oauth/access_token',
'userinfo_url' => 'https://api.github.com/user',
'scope' => 'read:user user:email',
],
'keycloak' => [
'client_id' => getenv('KEYCLOAK_CLIENT_ID') ?: '',
'client_secret' => getenv('KEYCLOAK_CLIENT_SECRET') ?: '',
'base_url' => rtrim(getenv('KEYCLOAK_BASE_URL') ?: '', '/'),
2026-05-17 12:03:04 +02:00
'internal_base_url' => rtrim(getenv('KEYCLOAK_INTERNAL_BASE_URL') ?: '', '/'),
2026-05-17 11:52:23 +02:00
'realm' => getenv('KEYCLOAK_REALM') ?: '',
'redirect_uri' => getenv('KEYCLOAK_REDIRECT_URI') ?: (rtrim(getenv('APP_URL') ?: 'https://totp.token2.swiss', '/') . '/auth/callback/keycloak'),
'scope' => getenv('KEYCLOAK_SCOPE') ?: 'openid email profile',
],
],
'session' => [
'lifetime' => 86400 * 30,
'cookie_name' => 'authvault_session',
],
];