From 471036b5fe0c39e21c172b31c7ae529959578d29 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Fri, 29 Aug 2025 12:11:59 +0000 Subject: [PATCH] reorder, tweak wording help emphasize the moral of PR69698, that continued lines win out over comments. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1928078 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/configuring.xml | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/docs/manual/configuring.xml b/docs/manual/configuring.xml index cfa52f361a5..9e76f1658b6 100644 --- a/docs/manual/configuring.xml +++ b/docs/manual/configuring.xml @@ -66,19 +66,24 @@ Server.

httpd configuration files contain one directive per line. The backslash "\" may be used as the last character on a line to indicate that the directive continues onto the next line. - There must be no other characters or white space between the - backslash and the end of the line.

+ To be interpreted as such a continuation, there must be no + other characters or white space between the backslash and the + end of the line.

-

Arguments to directives are separated by whitespace. If an +

Lines that begin with the hash character "#" are considered + comments, and are ignored. Comments may not be + included on the same line as a configuration directive, including + at the start of a line that has been continued as described in the + preceding pargraph. +

+ +

White space occurring before a directive is ignored, so + you may indent directives for clarity. Blank lines are also ignored. + Arguments to directives are separated by whitespace. If an argument contains spaces, you must enclose that argument in quotes.

Directives in the configuration files are case-insensitive, - but arguments to directives are often case sensitive. Lines - that begin with the hash character "#" are considered - comments, and are ignored. Comments may not be - included on the same line as a configuration directive. - White space occurring before a directive is ignored, so - you may indent directives for clarity. Blank lines are also ignored.

+ but arguments to directives are often case sensitive.

The values of variables defined with the Define or of shell environment variables can -- 2.47.3