mirror of
https://github.com/MrUnknownDE/linux-script.git
synced 2026-04-08 17:33:45 +02:00
11 lines
346 B
PHP
11 lines
346 B
PHP
declare(strict_types=1);
|
|
$cfg['blowfish_secret'] = 'GEN_PASS'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
|
|
$i = 0;
|
|
$i++;
|
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|
|
$cfg['Servers'][$i]['host'] = 'localhost';
|
|
$cfg['Servers'][$i]['compress'] = false;
|
|
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
|
|
|
$cfg['UploadDir'] = '';
|
|
$cfg['SaveDir'] = '';" |