redray
2008-10-25 56dfe60128f99d4199154f7df443723b07c13480
commit | author | age
20218c 1 <?php
M 2
57706b 3 //** TODO: These options need to be in an install script somehow
20218c 4
57706b 5 //** Installation Options
20218c 6
57706b 7 $conf['language'] = 'en';
P 8 $conf['distname'] = 'debian40';
9 $conf['hostname'] = 'server1.example.com'; // Full hostname
10 $conf['ispconfig_install_dir'] = '/usr/local/ispconfig';
11 $conf['ispconfig_config_dir'] = '/usr/local/ispconfig';
12 $conf['server_id'] = 1;
20218c 13
57706b 14 //**MySQL Database settings
P 15 $conf['mysql']['host'] = 'localhost';
16 $conf['mysql']['ip'] = '127.0.0.1';
17 $conf['mysql']['port'] = '3306';
18 $conf['mysql']['database'] = 'dbispconfig';
19 $conf['mysql']['admin_user'] = 'root';
20 $conf['mysql']['admin_password'] = '';
21 $conf['mysql']['ispconfig_user'] = 'ispconfig';
22 $conf['mysql']['ispconfig_password'] = '5sDrewBhk';
23
24 ?>