diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/scripts/webserver.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scripts/webserver.pl b/tests/scripts/webserver.pl index 99f6c40..195d40c 100755 --- a/tests/scripts/webserver.pl +++ b/tests/scripts/webserver.pl @@ -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($$$); |