Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
276 B
PHP
9 lines
276 B
PHP
<?php
|
|
// Vorlage: nach config.secret.php kopieren und mit echten Werten füllen.
|
|
// config.secret.php niemals ins Repo/Backup geben.
|
|
return [
|
|
'db_user' => 'DEIN_DB_BENUTZER',
|
|
'db_password' => 'DEIN_DB_PASSWORT',
|
|
'smtp_password' => 'DEIN_SMTP_PASSWORT',
|
|
];
|