aboutsummaryrefslogtreecommitdiff
path: root/www/apache13+ipv6/files/patch-al
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>2000-02-20 16:54:06 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>2000-02-20 16:54:06 +0000
commit2ff1308851bfd591928a7c94060e78cec913c41e (patch)
tree09e758a43dc05b0be0923914aee6d16fba8d2b62 /www/apache13+ipv6/files/patch-al
parent6f87190d2cf7d79c99e293d5f2fd1d3cf4e13b14 (diff)
Notes
Diffstat (limited to 'www/apache13+ipv6/files/patch-al')
-rw-r--r--www/apache13+ipv6/files/patch-al24
1 files changed, 24 insertions, 0 deletions
diff --git a/www/apache13+ipv6/files/patch-al b/www/apache13+ipv6/files/patch-al
new file mode 100644
index 000000000000..b355a697b4ab
--- /dev/null
+++ b/www/apache13+ipv6/files/patch-al
@@ -0,0 +1,24 @@
+--- src/support/log_server_status.orig Fri Jun 4 19:54:19 1999
++++ src/support/log_server_status Fri Sep 3 15:53:16 1999
+@@ -67,10 +67,10 @@
+ #
+ require 'sys/socket.ph';
+
+-$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312"
++$wherelog = "/var/log/httpd-status-";
+ $server = "localhost"; # Name of server, could be "www.foo.com"
+ $port = "80"; # Port on server
+-$request = "/status/?auto"; # Request to send
++$request = "/server-status/?auto"; # Request to send
+
+ sub tcp_connect
+ {
+@@ -100,7 +100,7 @@
+ chomp($date);
+ ($day,$time)=split(/:/,$date);
+ $res=&tcp_connect($server,$port);
+- open(OUT,">>$wherelog$day");
++ open(OUT,">>$wherelog$day.log");
+ if ($res) {
+ print OUT "$time:-1:-1:-1:-1:$res\n";
+ exit 1;