summaryrefslogtreecommitdiffstats
path: root/docs/manual/platform/windows.html.en
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2012-04-26 16:57:35 +0200
committerRich Bowen <rbowen@apache.org>2012-04-26 16:57:35 +0200
commit2e5d9d52e1b8e219329c84eea0313d14b7fd5a5c (patch)
tree6b77c732b713094f1d1c3dc7929fcec938777891 /docs/manual/platform/windows.html.en
parentSyntax for files in / (diff)
downloadapache2-2e5d9d52e1b8e219329c84eea0313d14b7fd5a5c.tar.xz
apache2-2e5d9d52e1b8e219329c84eea0313d14b7fd5a5c.zip
Rebuild Humbedooh's changes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330892 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/platform/windows.html.en')
-rw-r--r--docs/manual/platform/windows.html.en39
1 files changed, 25 insertions, 14 deletions
diff --git a/docs/manual/platform/windows.html.en b/docs/manual/platform/windows.html.en
index e1f9b21160..9dfd98642c 100644
--- a/docs/manual/platform/windows.html.en
+++ b/docs/manual/platform/windows.html.en
@@ -293,12 +293,13 @@
how it is accessed. If you wish to assure that only lowercase
is used in URLs, you can use something like:</p>
- <div class="example"><p><code>
- RewriteEngine On<br />
- RewriteMap lowercase int:tolower<br />
- RewriteCond %{REQUEST_URI} [A-Z]<br />
- RewriteRule (.*) ${lowercase:$1} [R,L]
- </code></p></div></li>
+ <pre class="prettyprint lang-config">
+RewriteEngine On
+RewriteMap lowercase int:tolower
+RewriteCond %{REQUEST_URI} [A-Z]
+RewriteRule (.*) ${lowercase:$1} [R,L]
+ </pre>
+</li>
<li><p>When running, Apache needs write access only to the logs
directory and any configured cache directory tree. Due to the
@@ -319,9 +320,10 @@
module, use the following (in addition to the status-activating
directives in <code>access.conf</code>):</p>
- <div class="example"><p><code>
+ <pre class="prettyprint lang-config">
LoadModule status_module modules/mod_status.so
- </code></p></div>
+ </pre>
+
<p>Information on <a href="../mod/mod_so.html#creating">creating
loadable modules</a> is also available.</p></li>
@@ -790,19 +792,28 @@
on mapped drive letters, but this is not recommended.)</p>
<div class="example"><h3>Example DocumentRoot with UNC path</h3><p><code>
+ <pre class="prettyprint lang-config">
DocumentRoot //dochost/www/html/
+ </pre>
+
</code></p></div>
<div class="example"><h3>Example DocumentRoot with IP address in UNC path</h3><p><code>
- DocumentRoot //192.168.1.50/docs/<br />
+ <pre class="prettyprint lang-config">
+ DocumentRoot //192.168.1.50/docs/
+ </pre>
+
</code></p></div>
<div class="example"><h3>Example Alias and corresponding Directory with UNC path</h3><p><code>
- Alias /images/ //imagehost/www/images/<br />
- <br />
- &lt;Directory //imagehost/www/images/&gt;<br />
- ...<br />
- &lt;Directory&gt;<br />
+ <pre class="prettyprint lang-config">
+Alias /images/ //imagehost/www/images/
+
+&lt;Directory //imagehost/www/images/&gt;
+#...
+&lt;Directory&gt;
+ </pre>
+
</code></p></div>
<p>When running Apache httpd as a service, you must create a