tests:webserver: make pid-file, log-dir and doc-root reside in /tmp by default

So simply starting the server will work.

Michael
This commit is contained in:
Michael Adam 2009-09-10 11:07:09 +02:00
parent 974be68476
commit 4d4f8bffef

View File

@ -23,11 +23,11 @@ my $EOL = "\015\012";
my $port = 2345;
my $proto = getprotobyname('tcp');
my $pid_file = "./webserver.pid";
my $log_dir = "./";
my $pid_file = "/tmp/webserver.pid";
my $log_dir = "/tmp";
my $access_log_file;
my $error_log_file;
my $document_root = "./";
my $document_root = "/tmp";
my $help = 0;
sub create_child($$$);