| | |
| | | <?php |
| | | |
| | | $conf["language"] = "en"; |
| | | $conf["distname"] = "debian40"; |
| | | $conf["hostname"] = "server1.example.com"; // Full hostname |
| | | $conf["ispconfig_install_dir"] = "/usr/local/ispconfig"; |
| | | $conf["ispconfig_config_dir"] = "/usr/local/ispconfig"; |
| | | //*** Debian 4.0 default settings |
| | | |
| | | /* |
| | | Distribution specific settings |
| | | */ |
| | | //* Main |
| | | $conf['language'] = 'en'; |
| | | $conf['distname'] = 'debian40'; |
| | | $conf['hostname'] = 'server1.domain.tld'; // Full hostname |
| | | $conf['ispconfig_install_dir'] = '/usr/local/ispconfig'; |
| | | $conf['ispconfig_config_dir'] = '/usr/local/ispconfig'; |
| | | $conf['ispconfig_log_priority'] = 2; // 0 = Debug, 1 = Warning, 2 = Error |
| | | $conf['server_id'] = 1; |
| | | $conf['init_scripts'] = '/etc/init.d'; |
| | | $conf['runlevel'] = '/etc'; |
| | | $conf['shells'] = '/etc/shells'; |
| | | $conf['cron_tab'] = '/var/spool/cron/crontabs/root'; |
| | | $conf['pam'] = '/etc/pam.d'; |
| | | |
| | | $conf["dist_init_scripts"] = "/etc/init.d"; |
| | | $conf["dist_runlevel"] = "/etc"; |
| | | $conf["dist_shells"] = "/etc/shells"; |
| | | $conf["dist_cron_tab"] = "/var/spool/cron/crontabs/root"; |
| | | //* MySQL |
| | | $conf['mysql']['init_script'] = 'mysql'; |
| | | $conf['mysql']['host'] = 'localhost'; |
| | | $conf['mysql']['ip'] = '127.0.0.1'; |
| | | $conf['mysql']['port'] = '3306'; |
| | | $conf['mysql']['database'] = 'dbispconfig'; |
| | | $conf['mysql']['admin_user'] = 'root'; |
| | | $conf['mysql']['admin_password'] = ''; |
| | | $conf['mysql']['charset'] = 'utf8'; |
| | | $conf['mysql']['ispconfig_user'] = 'ispconfig'; |
| | | $conf['mysql']['ispconfig_password'] = md5 (uniqid (rand())); |
| | | |
| | | // Apache |
| | | $conf["dist_apache_user"] = "www-data"; |
| | | $conf["dist_apache_group"] = "www-data"; |
| | | $conf["dist_apache_init_script"] = "apache2"; |
| | | $conf["dist_apache_version"] = "2.2"; |
| | | //* Apache |
| | | $conf['apache']['user'] = 'www-data'; |
| | | $conf['apache']['group'] = 'www-data'; |
| | | $conf['apache']['init_script'] = 'apache2'; |
| | | $conf['apache']['version'] = '2.2'; |
| | | $conf['apache']['vhost_conf_dir'] = '/etc/apache2/sites-available'; |
| | | $conf['apache']['vhost_conf_enabled_dir'] = '/etc/apache2/sites-enabled'; |
| | | $conf['apache']['vhost_port'] = '8080'; |
| | | |
| | | // Postfix |
| | | $conf["dist_postfix_config_dir"] = "/etc/postfix"; |
| | | $conf["dist_postfix_username"] = "postfix"; |
| | | $conf["dist_postfix_groupname"] = "postfix"; |
| | | $conf["dist_postfix_vmail_userid"] = "5000"; |
| | | $conf["dist_postfix_vmail_username"] = "vmail"; |
| | | $conf["dist_postfix_vmail_groupid"] = "5000"; |
| | | $conf["dist_postfix_vmail_groupname"] = "vmail"; |
| | | $conf["dist_postfix_vmail_mailbox_base"] = "/home/vmail"; |
| | | //* Postfix |
| | | $conf['postfix']['config_dir'] = '/etc/postfix'; |
| | | $conf['postfix']['init_script'] = 'postfix'; |
| | | $conf['postfix']['user'] = 'postfix'; |
| | | $conf['postfix']['group'] = 'postfix'; |
| | | $conf['postfix']['vmail_userid'] = '5000'; |
| | | $conf['postfix']['vmail_username'] = 'vmail'; |
| | | $conf['postfix']['vmail_groupid'] = '5000'; |
| | | $conf['postfix']['vmail_groupname'] = 'vmail'; |
| | | $conf['postfix']['vmail_mailbox_base'] = '/home/vmail'; |
| | | |
| | | // Courier |
| | | $conf["dist_courier_config_dir"] = "/etc/courier"; |
| | | //* Getmail |
| | | $conf['getmail']['config_dir'] = '/etc/getmail'; |
| | | $conf['getmail']['program'] = '/usr/bin/getmail'; |
| | | |
| | | // Amavisd |
| | | $conf["dist_amavis_config_dir"] = "/etc/amavis"; |
| | | //* Courier |
| | | $conf['courier']['config_dir'] = '/etc/courier'; |
| | | $conf['courier']['courier-authdaemon'] = 'courier-authdaemon'; |
| | | $conf['courier']['courier-imap'] = 'courier-imap'; |
| | | $conf['courier']['courier-imap-ssl'] = 'courier-imap-ssl'; |
| | | $conf['courier']['courier-pop'] = 'courier-pop'; |
| | | $conf['courier']['courier-pop-ssl'] = 'courier-pop-ssl'; |
| | | |
| | | /* |
| | | MySQL Database settings |
| | | */ |
| | | $conf["mysql_server_host"] = "localhost"; |
| | | $conf["mysql_server_ip"] = "127.0.0.1"; |
| | | $conf["mysql_server_port"] = "3306"; |
| | | $conf["mysql_server_database"] = "dbispconfig"; |
| | | $conf["mysql_server_admin_user"] = "root"; |
| | | $conf["mysql_server_admin_password"] = ""; |
| | | $conf["mysql_server_ispconfig_user"] = "ispconfig"; |
| | | $conf["mysql_server_ispconfig_password"] = "5sDrewBhk"; |
| | | //* SASL |
| | | $conf['saslauthd']['config'] = '/etc/default/saslauthd'; |
| | | $conf['saslauthd']['init_script'] = 'saslauthd'; |
| | | |
| | | //* Amavisd |
| | | $conf['amavis']['config_dir'] = '/etc/amavis'; |
| | | $conf['amavis']['init_script'] = 'amavis'; |
| | | |
| | | //* ClamAV |
| | | $conf['clamav']['init_script'] = 'clamav-daemon'; |
| | | |
| | | //* Pureftpd |
| | | $conf['pureftpd']['config_dir'] = '/etc/pure-ftpd'; |
| | | $conf['pureftpd']['init_script'] = 'pure-ftpd-mysql'; |
| | | |
| | | //* MyDNS |
| | | $conf['mydns']['config_dir'] = '/etc'; |
| | | $conf['mydns']['init_script'] = 'mydns'; |
| | | |
| | | |
| | | |
| | | //* Jailkit |
| | | $conf['jailkit']['config_dir'] = '/etc/jailkit'; |
| | | $conf['jailkit']['jk_init'] = 'jk_init.ini'; |
| | | $conf['jailkit']['jk_chrootsh'] = 'jk_chrootsh.ini'; |
| | | |
| | | ?> |