mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
353 B
13 lines
353 B
6 years ago
|
<?php
|
||
|
$cfg['blowfish_secret'] = 'd41d8cd98f00b204e9800998ecf8427e';
|
||
|
$i = 0;
|
||
|
$i++;
|
||
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|
||
|
$cfg['Servers'][$i]['host'] = 'localhost';
|
||
|
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
||
|
$cfg['Servers'][$i]['compress'] = false;
|
||
|
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
||
|
$cfg['UploadDir'] = '';
|
||
|
$cfg['SaveDir'] = '';
|
||
|
?>
|