1+ <?php
2+ $ autoinstall ['language ' ] = 'en ' ; // de, en (default)
3+ $ autoinstall ['install_mode ' ] = 'standard ' ; // standard (default), expert
4+
5+ $ autoinstall ['hostname ' ] = 'server1.example.com ' ; // default
6+ $ autoinstall ['mysql_hostname ' ] = 'localhost ' ; // default: localhost
7+ $ autoinstall ['mysql_root_user ' ] = 'root ' ; // default: root
8+ $ autoinstall ['mysql_root_password ' ] = 'howtoforge ' ;
9+ $ autoinstall ['mysql_database ' ] = 'dbispconfig ' ; // default: dbispcongig
10+ $ autoinstall ['mysql_charset ' ] = 'utf8 ' ; // default: utf8
11+ $ autoinstall ['http_server ' ] = 'nginx ' ; // apache (default), nginx
12+ $ autoinstall ['ispconfig_port ' ] = '8080 ' ; // default: 8080
13+ $ autoinstall ['ispconfig_use_ssl ' ] = 'y ' ; // y (default), n
14+
15+ /* SSL Settings */
16+ $ autoinstall ['ssl_cert_country ' ] = 'AU ' ;
17+ $ autoinstall ['ssl_cert_state ' ] = 'Some-State ' ;
18+ $ autoinstall ['ssl_cert_locality ' ] = 'Chicago ' ;
19+ $ autoinstall ['ssl_cert_organisation ' ] = 'Internet Widgits Pty Ltd ' ;
20+ $ autoinstall ['ssl_cert_organisation_unit ' ] = 'IT department ' ;
21+ $ autoinstall ['ssl_cert_common_name ' ] = $ autoinstall ['hostname ' ];
22+
23+ /* optional expert mode settings, needed only for expert mode */
24+ $ autoinstall ['mysql_ispconfig_user ' ] = 'ispconfig ' ; // default: ispconfig
25+ $ autoinstall ['mysql_ispconfig_password ' ] = md5 (uniqid (rand ()));
26+ $ autoinstall ['join_multiserver_setup ' ] = 'n ' ; // y, n (default)
27+ $ autoinstall ['mysql_master_hostname ' ] = 'master.example.com ' ;
28+ $ autoinstall ['mysql_master_root_user ' ] = 'root ' ;
29+ $ autoinstall ['mysql_master_root_password ' ] = 'howtoforge ' ;
30+ $ autoinstall ['mysql_master_database ' ] = 'dbispconfig ' ; // default: dbispconfig
31+ $ autoinstall ['configure_mail ' ] = 'y ' ; // y (default), n
32+ $ autoinstall ['configure_jailkit ' ] = 'y ' ; // y (default), n
33+ $ autoinstall ['configure_ftp ' ] = 'y ' ; // y (default), n
34+ $ autoinstall ['configure_dns ' ] = 'y ' ; // y (default), n
35+ $ autoinstall ['configure_apache ' ] = 'y ' ; // y (default), n
36+ $ autoinstall ['configure_nginx ' ] = 'y ' ; // y (default), n
37+ $ autoinstall ['configure_firewall ' ] = 'y ' ; // y (default), n
38+ $ autoinstall ['install_ispconfig_web_interface ' ] = 'y ' ; // y (default), n
39+
40+ /* optional update settings, needed only for updates */
41+ $ autoupdate ['do_backup ' ] = 'yes ' ; // yes (default), no
42+ $ autoupdate ['mysql_root_password ' ] = 'howtoforge ' ;
43+ $ autoupdate ['mysql_master_hostname ' ] = 'master.example.com ' ;
44+ $ autoupdate ['mysql_master_root_user ' ] = 'root ' ;
45+ $ autoupdate ['mysql_master_root_password ' ] = 'howtoforge ' ;
46+ $ autoupdate ['mysql_master_database ' ] = 'dbispconfig ' ; // default: dbispconfig
47+ $ autoupdate ['reconfigure_permissions_in_master_database ' ] = 'no ' ; // no (default), yes
48+ $ autoupdate ['reconfigure_services ' ] = 'yes ' ; // yes (default), no
49+ $ autoupdate ['ispconfig_port ' ] = '8080 ' ; // default: 8080
50+ $ autoupdate ['create_new_ispconfig_ssl_cert ' ] = 'no ' ; // no (default), yes
51+ $ autoupdate ['reconfigure_crontab ' ] = 'yes ' ; // yes (default), no
52+ ?>
0 commit comments