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:
parent
974be68476
commit
4d4f8bffef
@ -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($$$);
|
||||
|
Loading…
Reference in New Issue
Block a user