Handle hostnames with upper-case letters
[webmin.git] / apache / start.cgi
1 #!/usr/local/bin/perl
2 # start.cgi
3 # Start apache with the server root from the config files
4
5 require './apache-lib.pl';
6 &ReadParse();
7 &error_setup($text{'start_err'});
8 $access{'stop'} || &error($text{'start_ecannot'});
9 $err = &start_apache();
10 &error($err) if ($err);
11 &webmin_log("start");
12 &redirect($in{'redir'});
13