home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / conf.cgi < prev    next >
Encoding:
Text File  |  2004-06-03  |  6.2 KB  |  101 lines

  1. #!perl/bin/perl.exe
  2.  
  3. $httpdtitle        = "Web-GUI Apache2/PHP-Handler";
  4. $httpdcgititle        = "Web-GUI Apache2/PHP-FastCGI";
  5. $httpdssltitle        = "Web-GUI Apache2/SSL Configuration";
  6. $httpdcnf        = "httpd.conf";
  7. $httpdcgicnf        = "httpd.cgi.conf";
  8. $httpdsslcnf        = "ssl.conf";
  9.     
  10. $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.";
  11.  
  12. # activation section
  13. $act_cgi        = "Activate CGI (in DocumentRoot)";
  14. $act_php        = "Activate PHP (MOD)";
  15. $act_perl        = "Activate Perl";
  16. $act_python        = "Activate Python";
  17. $act_phpcgi        = "Activate PHP (CGI)";
  18. $act_asp        = "Activate ASP";
  19. $act_ssl        = "Activate SSL";
  20. $act_modstatus        = "Activate mod_status";
  21. $act_modproxy        = "Activate mod_proxy";
  22. $act_modsecurity    = "Activate mod_security";
  23. $act_modgzip        = "Activate mod_gzip";
  24. $act_modrewrite        = "Activate mod_rewrite";
  25.  
  26. $sr_name        = "ServerName: ";
  27. $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";
  28. $lst_to            = "Listen (IP:Port): ";
  29. $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)";
  30. $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)";
  31. $sr_adm            = "ServerAdmin: ";
  32. $descr_sr_adm        = "This value is used on several generated sites as contact (e.g. Errorpages)";
  33. $logl            = "LogLevel: ";
  34. $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.";
  35. $sr_tok            = "ServerTokens: ";
  36. $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)";
  37. $sr_sig            = "ServerSignature: ";
  38. $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.";
  39. $sr_docind        = "DirectoryIndex: ";
  40. $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.";
  41. $sr_tpc            = "ThreadsPerChild: ";
  42. $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!";
  43. $sr_hnl            = "HostnameLookups: ";
  44. $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";
  45. $sr_indopt        = "IndexOptions: ";
  46. $descr_sr_indopt    = "IndexOptions defines various configuration settings for directory indexing";
  47. $ssl_crtf        = "SSLCertificateFile: ";
  48. $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.";
  49. $ssl_keyf        = "SSLCertificateKeyFile: ";
  50. $descr_ssl_keyf        = "The path to the server key. This file must exist and correspond to the cert (otherwise the server won't start)!";
  51. $err_log        = "ErrorLog: ";
  52. $descr_err_log        = "Path and name for SSL-errorlog. The directory must exist (otherwise server won't start)!";
  53. $trans_log        = "TransferLog: ";
  54. $descr_trans_log    = "Path and name for SSL-transferlog. The directory must exist (otherwise server won't start)!";
  55.  
  56. $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!";
  57.  
  58. $died_wc        = "Died while closing";
  59. $with_error        = "with error";
  60. $died_wt        = "Died while truncating";
  61. $error            = "ERROR:";
  62. $cant_be_op        = "can't be opened";
  63.  
  64. $php_act        = "PHP (MOD):";
  65. $cgi_act        = "CGI:";
  66. $perl_act        = "Perl:";
  67. $python_act        = "Python:";
  68. $phpcgi_act        = "PHP (CGI):";
  69. $asp_act        = "ASP:";
  70. $ssl_act        = "SSL:";
  71. $mod_status_act        = "mod_status:";
  72. $mod_proxy_act        = "mod_proxy:";
  73. $mod_security_act    = "mod_security:";
  74. $mod_gzip_act        = "mod_gzip:";
  75. $mod_rewrite_act    = "mod_rewrite:";
  76.  
  77. $srvmod_extens        = "Servermodules: extensions/web-techniques";
  78. $srvmod_mods        = "Servermodules: extensions/system";
  79.  
  80. $after_restart        = "Server reboots with the following conditions:";
  81.  
  82. $sol_srpo        = "ServerName and optional port: ";
  83. $sol_lst        = "Port (opt. interface:port) to listen to: ";
  84. $sol_sradm        = "Emailaddress of admin: ";
  85. $sol_logl        = "Loglevel: ";
  86. $sol_srtok        = "Public informations about the server: ";
  87. $sol_srsig        = "ServerSignature ";
  88. $sol_docind        = "Valid startingpage(s): ";
  89. $sol_tpc        = "Threads per child:  ";
  90. $sol_hnl        = "DNS lookup of client requests: ";
  91. $sol_indopt        = "Configuration settings for DirectoryIndex: ";
  92. $sol_crtf        = "Path to certfile: ";
  93. $sol_keyf        = "Path to keyfile: ";
  94. $sol_ssllog        = "Path to SSL-errorlog: ";
  95. $sol_translog        = "Path to SSL-transferlog:  ";
  96.  
  97. $was_edt_succ        = "was successfully written. Don't forget to restart your server.";
  98. $if_srn_edt        = "If you decided to change the serverName directive, remember to change this value also in your ssl.conf";
  99. $man_sslcnf        = "Manipulate ssl.conf";
  100. $click_stst        = "Manipulate services";
  101. $back            = "Back";