Apparently they are not detected/handled gracefully by all directives.
Also, change one occurrance (Group #-1) to use a quoted string (Group "#-1")
Reviewed by: Ryan Bloom
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@89497
13f79535-47bb-0310-9956-
ffa450edef68
# suggested workaround is to create a user www and use that user.
# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
# when the value of (unsigned)Group is above 60000;
-# don't use Group #-1 on these systems!
+# don't use Group "#-1" on these systems!
#
User nobody
-Group #-1
+Group "#-1"
#
# ServerAdmin: Your address, where problems with the server should be
Changes with Apache 1.3.21
+ *) Print a warning when an attempt is made to use line-end comments.
+ Apparently they are not detected/handled gracefully by all directives.
+ [Martin Kraemer]
+
*) (TPF only) Take advantage of improvements to select(), fork(), and
exec() in the TPF operating system.
[David McCreedy <McCreedy@us.ibm.com>]
++strend;
}
else {
+ if (*str == '#')
+ ap_log_error(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, NULL,
+ "Apache does not support line-end comments. Consider using quotes around argument: \"%s\"", str);
strend = str;
while (*strend && !ap_isspace(*strend))
++strend;