| | |
| | | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | */ |
| | | |
| | | //*** Debian 4.0 default settings |
| | | //*** Debian 6.0 default settings |
| | | |
| | | //* Main |
| | | $conf['language'] = 'en'; |
| | | $conf['distname'] = 'debian40'; |
| | | $conf['distname'] = 'debian60'; |
| | | $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['ispconfig_log_dir'] = '/var/log/ispconfig'; |
| | | $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'; |
| | | |
| | | //* Services provided by this server, this selection will be overridden by the expert mode |
| | |
| | | $conf['services']['file'] = true; |
| | | $conf['services']['db'] = true; |
| | | $conf['services']['vserver'] = true; |
| | | $conf['services']['proxy'] = false; |
| | | $conf['services']['firewall'] = false; |
| | | |
| | | //* MySQL |
| | | $conf['mysql']['installed'] = false; // will be detected automatically during installation |
| | |
| | | $conf['mysql']['admin_password'] = ''; |
| | | $conf['mysql']['charset'] = 'utf8'; |
| | | $conf['mysql']['ispconfig_user'] = 'ispconfig'; |
| | | $conf['mysql']['ispconfig_password'] = md5 (uniqid (rand())); |
| | | $conf['mysql']['ispconfig_password'] = md5(uniqid(rand())); |
| | | $conf['mysql']['master_slave_setup'] = 'n'; |
| | | $conf['mysql']['master_host'] = ''; |
| | | $conf['mysql']['master_database'] = 'dbispconfig'; |
| | | $conf['mysql']['master_admin_user'] = 'root'; |
| | | $conf['mysql']['master_admin_password'] = ''; |
| | | $conf['mysql']['master_ispconfig_user'] = ''; |
| | | $conf['mysql']['master_ispconfig_password'] = md5 (uniqid (rand())); |
| | | $conf['mysql']['master_ispconfig_password'] = md5(uniqid(rand())); |
| | | |
| | | //* Apache |
| | | $conf['apache']['installed'] = false; // will be detected automatically during installation |
| | |
| | | //* Fastcgi |
| | | $conf['fastcgi']['fastcgi_phpini_path'] = '/etc/php5/cgi/'; |
| | | $conf['fastcgi']['fastcgi_starter_path'] = '/var/www/php-fcgi-scripts/[system_user]/'; |
| | | $conf['fastcgi']['fastcgi_bin'] = '/usr/bin/php-cgi'; |
| | | |
| | | //* Postfix |
| | | $conf['postfix']['installed'] = false; // will be detected automatically during installation |
| | |
| | | $conf['postfix']['vmail_groupid'] = '5000'; |
| | | $conf['postfix']['vmail_groupname'] = 'vmail'; |
| | | $conf['postfix']['vmail_mailbox_base'] = '/var/vmail'; |
| | | |
| | | //* Mailman |
| | | $conf['mailman']['installed'] = false; // will be detected automatically during installation |
| | | $conf['mailman']['config_dir'] = '/etc/mailman'; |
| | | $conf['mailman']['init_script'] = 'mailman'; |
| | | |
| | | //* Getmail |
| | | $conf['getmail']['installed'] = false; // will be detected automatically during installation |
| | |
| | | $conf['jailkit']['jailkit_chroot_app_programs'] = '/usr/bin/groups /usr/bin/id /usr/bin/dircolors /usr/bin/lesspipe /usr/bin/basename /usr/bin/dirname /usr/bin/nano /usr/bin/pico'; |
| | | $conf['jailkit']['jailkit_chroot_cron_programs'] = '/usr/bin/php /usr/bin/perl /usr/share/perl /usr/share/php'; |
| | | |
| | | //* Squid |
| | | $conf['squid']['installed'] = false; // will be detected automatically during installation |
| | | $conf['squid']['config_dir'] = '/etc/squid'; |
| | | $conf['squid']['init_script'] = 'squid'; |
| | | |
| | | //* Nginx |
| | | $conf['nginx']['installed'] = false; // will be detected automatically during installation |
| | | $conf['nginx']['user'] = 'www-data'; |
| | | $conf['nginx']['group'] = 'www-data'; |
| | | $conf['nginx']['config_dir'] = '/etc/nginx'; |
| | | $conf['nginx']['vhost_conf_dir'] = '/etc/nginx/sites-available'; |
| | | $conf['nginx']['vhost_conf_enabled_dir'] = '/etc/nginx/sites-enabled'; |
| | | $conf['nginx']['init_script'] = 'nginx'; |
| | | $conf['nginx']['vhost_port'] = '8080'; |
| | | $conf['nginx']['cgi_socket'] = '/var/run/fcgiwrap.socket'; |
| | | $conf['nginx']['php_fpm_init_script'] = 'php5-fpm'; |
| | | $conf['nginx']['php_fpm_ini_path'] = '/etc/php5/fpm/php.ini'; |
| | | $conf['nginx']['php_fpm_pool_dir'] = '/etc/php5/fpm/pool.d'; |
| | | $conf['nginx']['php_fpm_start_port'] = 9010; |
| | | $conf['nginx']['php_fpm_socket_dir'] = '/var/lib/php5-fpm'; |
| | | |
| | | //* OpenVZ |
| | | $conf['openvz']['installed'] = false; |
| | | |
| | | //*Bastille-Firwall |
| | | $conf['bastille']['installed'] = false; |
| | | $conf['bastille']['config_dir'] = '/etc/Bastille'; |
| | | |
| | | //* vlogger |
| | | $conf['vlogger']['config_dir'] = '/etc'; |
| | | |
| | |
| | | $conf['cron']['crontab_dir'] = '/etc/cron.d'; |
| | | $conf['cron']['wget'] = '/usr/bin/wget'; |
| | | |
| | | |
| | | ?> |