Replace hard-coded example paths with config_vars templates. (with assitance from Igor)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1325265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rich Bowen
2012-04-12 14:03:28 +00:00
parent 50e5ebcf37
commit 81937e8424

View File

@ -29,9 +29,9 @@ use IO::Socket;
use strict;
use warnings;
my $wherelog = "/var/log/httpd/"; # Logs will be like "/var/log/graph/19960312"
my $wherelog = "@exp_logfiledir@"; # Logs will be like "@exp_logfiledir@/19960312"
my $server = "localhost"; # Name of server, could be "www.foo.com"
my $port = "80"; # Port on server
my $port = "@PORT@"; # Port on server
my $request = "/server-status/?auto"; # Request to send
my @ltime = localtime(time);