diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2003-03-14 00:16:05 +0100 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2003-03-14 00:16:05 +0100 |
commit | 1775475f73d27ccb7b065e06c939f8a4824b7c16 (patch) | |
tree | c9d8e538cfa6dc2a3791bed4124e4d1d78f67a29 | |
parent | Document the SSLMutex directives (diff) | |
download | apache2-1775475f73d27ccb7b065e06c939f8a4824b7c16.tar.xz apache2-1775475f73d27ccb7b065e06c939f8a4824b7c16.zip |
Added a note that indicates that forward slashes should always be used on
non-unix systems even if the OS allows backslashes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99005 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/mod/core.xml | 6 | ||||
-rw-r--r-- | docs/manual/mod/mod_log_config.xml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 96f75e8595..6e0f5f8ca3 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -917,6 +917,12 @@ ErrorLog logs/error.log (Windows and OS/2)</default> document for details on why your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server.</p> + <note type="warning"><title>Note</title> + <p>When entering a file path on non-Unix platforms, care should be taken + to make sure that only forward slashed are used even though the platform + may allow the use of back slashes. In general it is a good idea to always + use forward slashes throughout the configuration files.</p> + </note> </usage> <seealso><directive module="core">LogLevel</directive></seealso> <seealso><a href="../logs.html">Apache Log Files</a></seealso> diff --git a/docs/manual/mod/mod_log_config.xml b/docs/manual/mod/mod_log_config.xml index 8e349fca14..f8e4c8175c 100644 --- a/docs/manual/mod/mod_log_config.xml +++ b/docs/manual/mod/mod_log_config.xml @@ -280,6 +280,12 @@ <p>If a program is used, then it will be run under the user who started httpd. This will be root if the server was started by root; be sure that the program is secure.</p> + </note> + <note type="warning"><title>Note</title> + <p>When entering a file path on non-Unix platforms, care should be taken + to make sure that only forward slashed are used even though the platform + may allow the use of back slashes. In general it is a good idea to always + use forward slashes throughout the configuration files.</p> </note></dd> </dl> |