$infohead = "<b>WARNING</b>: This program does NOT verify entered values!<br>Wrong values might result in obscure server behaviour, probably it won't even start up.";
# activation section
$act_cgi = "Activate CGI (in DocumentRoot)";
$act_php = "Activate PHP (MOD)";
$act_perl = "Activate Perl";
$act_python = "Activate Python";
$act_phpcgi = "Activate PHP (CGI)";
$act_asp = "Activate ASP";
$act_ssl = "Activate SSL";
$act_modstatus = "Activate mod_status";
$act_modproxy = "Activate mod_proxy";
$act_modsecurity = "Activate mod_security";
$act_modgzip = "Activate mod_gzip";
$act_modrewrite = "Activate mod_rewrite";
$sr_name = "ServerName: ";
$descr_sr = "Fully Qualified Domain Name (FQDN): Format: <b><DNS-Name>:<Port></b> - (port is optional) Instead of the FQDN it is also possible to enter the IP";
$lst_to = "Listen (IP:Port): ";
$descr_lst = "Port Apache is listening for incoming requests (default 80). It is also possible to bind the process to a dedicated interface. Format: <b><IP-Adresse>:<Port></b> (e.g. 127.0.0.1:80)";
$descr_lst2 = "Port Apache is listening for incoming requests (default 443) It is also possible to bind the process to a dedicated interface. Format: <b><IP-Adresse>:<Port></b> (e.g. 127.0.0.1:443)";
$sr_adm = "ServerAdmin: ";
$descr_sr_adm = "This value is used on several generated sites as contact (e.g. Errorpages)";
$logl = "LogLevel: ";
$descr_logl = "This value is used to define how detailed the logs should be written. <b>Possible parameter:</b> debug, info, notice, warn, error, crit, alert, emerg. (sorted from max to min details). ATTENTION: The higher the loglevel, the higher the performance loss.";
$sr_tok = "ServerTokens: ";
$descr_sr_tok = "Defines the return value the webserver writes to it's http header. The higher the level, the more informations are send. <b>Possible parameter:</b> Full, OS, Minor, Minimal, Major, Prod. (sorted from max to min infos)";
$sr_sig = "ServerSignature: ";
$descr_sr_sig = "Defines additionally to directive 'ServerTokens', the name of the requested (virtual-)host and the mailaddress of the admin at generated pages. Possible parameter: On, Off, EMail.";
$sr_docind = "DirectoryIndex: ";
$descr_docind = "Defines the first page to be shown, when calling a side without a dedicated file. So if www.example.com is called, the webserver searches for this value to get the starting-page. If this value is missing Apache shows a directory-listing if possible, otherwise an empty page or 403 error.";
$sr_tpc = "ThreadsPerChild: ";
$descr_sr_tpc = "Defines the Threads per Child. You need not modifiy this value in normal cases. Here you have the chance to increase or decrease the needed ressources (esp. RAM) and/or the starting time of your webserver. <b>ATTENTION:</b> This may result in performance loss!";
$sr_hnl = "HostnameLookups: ";
$descr_sr_hnl = "If this value is set to 'On', the webserver does a DNS resolution on every request and writes it down to logfiles instead of simple IPs. If set the Apache needs a DNS to serve his resolution requests <b>Possible parameter:</b> On, Off. <b>ATTENTION</b>: Set to On might result in extreme performance redce as EVERY request is looked up";
$sr_indopt = "IndexOptions: ";
$descr_sr_indopt = "IndexOptions defines various configuration settings for directory indexing";
$ssl_crtf = "SSLCertificateFile: ";
$descr_ssl_crtf = "The path to the server certificate. This file must exist (otherwise the server won't start)! This cert has a <b>*corresponding*</b> key, which is also required.";
$ssl_keyf = "SSLCertificateKeyFile: ";
$descr_ssl_keyf = "The path to the server key. This file must exist and correspond to the cert (otherwise the server won't start)!";
$err_log = "ErrorLog: ";
$descr_err_log = "Path and name for SSL-errorlog. The directory must exist (otherwise server won't start)!";
$trans_log = "TransferLog: ";
$descr_trans_log = "Path and name for SSL-transferlog. The directory must exist (otherwise server won't start)!";
$php_mod_or_cgi = "<b>ATTENTION:</b> PHP may only be used as MOD <b>or</b> in CGI mode. Do NOT activate both as this will result in serious server misbehaviour. This script won't verify your input!";