design anpassung
This commit is contained in:
+3
-3
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'name' => $_ENV['APP_NAME'] ?? 'Kaffeekasse SaaS',
|
||||
'name' => $_ENV['APP_NAME'] ?? 'Kaffeeliste',
|
||||
'env' => $_ENV['APP_ENV'] ?? 'production',
|
||||
'debug' => (($_ENV['APP_DEBUG'] ?? '0') === '1'),
|
||||
'url' => rtrim($_ENV['APP_URL'] ?? 'http://localhost:8080', '/'),
|
||||
@@ -20,7 +20,7 @@ return [
|
||||
'mail' => [
|
||||
'from' => trim($_ENV['MAIL_FROM'] ?? 'noreply@example.com'),
|
||||
'reply_to' => trim($_ENV['MAIL_REPLY_TO'] ?? ''),
|
||||
'subject_prefix' => $_ENV['MAIL_SUBJECT_PREFIX'] ?? '[Kaffeekasse] ',
|
||||
'subject_prefix' => $_ENV['MAIL_SUBJECT_PREFIX'] ?? '[Kaffeeliste] ',
|
||||
'log_fallback' => (($_ENV['MAIL_LOG_FALLBACK'] ?? '1') === '1'),
|
||||
'log_file' => trim($_ENV['MAIL_LOG_FILE'] ?? ''),
|
||||
],
|
||||
@@ -29,7 +29,7 @@ return [
|
||||
?? rtrim($_ENV['APP_URL'] ?? 'http://localhost:8080', '/') . '/reset-password?token={{token}}',
|
||||
'ttl_minutes' => max(5, (int) ($_ENV['PASSWORD_RESET_TTL_MINUTES'] ?? 60)),
|
||||
'max_active_tokens' => max(1, (int) ($_ENV['PASSWORD_RESET_MAX_ACTIVE_TOKENS'] ?? 3)),
|
||||
'subject' => $_ENV['PASSWORD_RESET_SUBJECT'] ?? 'Passwort zuruecksetzen',
|
||||
'subject' => $_ENV['PASSWORD_RESET_SUBJECT'] ?? 'Passwort zurücksetzen',
|
||||
],
|
||||
'rate_limits' => [
|
||||
'login' => [
|
||||
|
||||
Reference in New Issue
Block a user