[open-ils-commits] r19857 - trunk/Open-ILS/examples/apache (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Mar 25 02:52:22 EDT 2011


Author: dbs
Date: 2011-03-25 02:52:18 -0400 (Fri, 25 Mar 2011)
New Revision: 19857

Modified:
   trunk/Open-ILS/examples/apache/eg.conf
Log:
Avoid Apache warnings resulting from duplicate NameVirtualHost directives

Benjamin Shum reported that the Apache warnings that have been a part
of Evergreen's default configuration on Apache start for ages could
be avoided by commenting out the "NameVirtualHost: *80" line in
eg.conf. Testing confirmed that the directive was not necessary on Ubuntu,
Debian, or Fedora. As this warning has been the cause for unnecessary concern 
on the part of many new adopters of Evergreen, getting rid of it appears to
be a nice usability win.

Thanks Ben!


Modified: trunk/Open-ILS/examples/apache/eg.conf
===================================================================
--- trunk/Open-ILS/examples/apache/eg.conf	2011-03-24 18:38:41 UTC (rev 19856)
+++ trunk/Open-ILS/examples/apache/eg.conf	2011-03-25 06:52:18 UTC (rev 19857)
@@ -135,7 +135,9 @@
 # Port 80 comes after 443 to avoid "unknown protocol speaking not SSL to HTTPS port!?" 
 # errors, per http://wiki.apache.org/httpd/InternalDummyConnection
 # ----------------------------------------------------------------------------------
-NameVirtualHost *:80
+
+# Commented to avoid warnings from duplicate "NameVirtualHost: *80" directives
+#NameVirtualHost *:80
 <VirtualHost *:80>
 	ServerName localhost:80
 	ServerAlias 127.0.0.1:80



More information about the open-ils-commits mailing list