🚀 مُصادَق: تحديث برمجي جديد 2026-05-03 15:11

This commit is contained in:
Hamza-Ayed
2026-05-03 15:11:34 +03:00
parent 3aeb3220f1
commit 7cd2d91576
23 changed files with 1418 additions and 879 deletions

View File

@@ -1,13 +1,7 @@
<?php
// ⚠️ This file must NEVER be committed to Git
// Add to .gitignore: config/secrets.php
return [
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
| This key is used by the EncryptionService to secure sensitive data like
| JoFotara credentials. It MUST be 32 bytes (256 bits) long.
|
*/
'encryption_key' => '8f9e7d6c5b4a3f2e1d0c9b8a7f6e5d4c3b2a1f0e9d8c7b6a5f4e3d2c1b0a9f8', // Default for dev, should be unique per install
// Generate with: php -r "echo base64_encode(random_bytes(32));"
'encryption_key' => base64_decode($_ENV['ENCRYPTION_KEY_B64'] ?? ''),
];