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