mkach/config.php
Lain Iwakura c5ad7e8cb4
ok?
2025-07-24 05:58:36 +03:00

16 lines
594 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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' => 26214400,
'allowed_types' => ['jpg', 'jpeg', 'png', 'gif', 'webp','JPG','JPEG','PNG','GIF','WEBP'],
'motd' => 'Добро пожаловать на mkach - анонимный имиджборд от МК',
'logo_enabled' => true,
'logo_text' => 'mkach'
];