mkach/config.php
Lain Iwakura 0e9d6c681f
gg
2025-07-24 05:17:13 +03:00

13 lines
395 B
PHP

<?php
return [
'db' => [
'host' => $_ENV['DB_HOST'] ?? 'mysql',
'name' => $_ENV['DB_NAME'] ?? 'mkach',
'user' => $_ENV['DB_USER'] ?? 'mkach',
'pass' => $_ENV['DB_PASS'] ?? 'mkach'
],
'access_key' => 'mkalwaysthebest1337',
'upload_path' => 'uploads/',
'max_file_size' => 5242880,
'allowed_types' => ['jpg', 'jpeg', 'png', 'gif', 'webp']
];