diff options
author | Joshua Slive <slive@apache.org> | 2000-09-21 21:27:00 +0000 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2000-09-21 21:27:00 +0000 |
commit | cf3d4559cc93c7093dab70954018fcf81cd6a981 (patch) | |
tree | 03682e94514e068550a81d22b0472cc94fb6d0d1 /docs/manual/configuring.html | |
parent | 0ddc51e4739a51381f5085ec9faca556fe678f04 (diff) | |
download | httpd-cf3d4559cc93c7093dab70954018fcf81cd6a981.tar.gz |
Syntax docs. (Yes, I am essentially just documenting the shell
syntax. Oh well.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86280 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/configuring.html')
-rw-r--r-- | docs/manual/configuring.html | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/manual/configuring.html b/docs/manual/configuring.html index fbe41c2f17..d2aa794a96 100644 --- a/docs/manual/configuring.html +++ b/docs/manual/configuring.html @@ -37,12 +37,19 @@ filename is set by the <A HREF="mod/mod_mime.html#typesconfig" <H2>Syntax of the Configuration Files</H2> +<P>Apache configuration files contain one directive per line. The +back-slash "\" 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 back-slash and the end of +the line. To end a line with a literal back-slash, you can escape it +by preceding it with a second back-slash "\\". + <P>Directives in the configuration files are case-insensitive, but arguments to directives are often case sensitive. Lines which begin with the hash character "#" are considered comments, and are ignored. -Comments may <STRONG>not</STRONG> be included on a line after a configuration -directive. White space occurring before a directive -is ignored, so you may indent directives for clarity. +Comments may <STRONG>not</STRONG> be included on a line after a +configuration directive. Blank lines and white space occurring before +a directive are ignored, so you may indent directives for clarity. <P>You can check your configuration files for syntax errors without starting the server by using <CODE>apachectl configtest</CODE> @@ -59,7 +66,7 @@ included in the server at compile-time. If the server is compiled to use <A HREF="dso.html">dynamically loaded</A> modules, then modules can be compiled separately and added at any time using the <A HREF="mod/mod_so.html#loadmodule">LoadModule</A> directive. -Otherwise, apache must be recompiled to add or remove modules. +Otherwise, Apache must be recompiled to add or remove modules. <P>To see which modules are currently compiled into the server, you can use the <CODE>-l</CODE> command line option. |