From 603fb1168218a813f1b0816b1208c5d0c92cf29d Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Mon, 7 Jul 2008 22:22:15 +0200 Subject: [PATCH] Avoid apache complaining about lack of server's FQDN On some setups, apache will say: apache2: Could not reliably determine the server's fully qualified domain name, using $(IP_address) for ServerName Avoid this message polluting tests output by setting a ServerName in apache configuration. Signed-off-by: Mike Hommey Signed-off-by: Junio C Hamano --- t/lib-httpd/apache.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/t/lib-httpd/apache.conf b/t/lib-httpd/apache.conf index a4473462d1..4717c2d33b 100644 --- a/t/lib-httpd/apache.conf +++ b/t/lib-httpd/apache.conf @@ -1,3 +1,4 @@ +ServerName dummy PidFile httpd.pid DocumentRoot www ErrorLog error.log -- 2.11.4.GIT