diff options
Diffstat (limited to 'docs/manual/mod/mod_allowmethods.html.en')
-rw-r--r-- | docs/manual/mod/mod_allowmethods.html.en | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/docs/manual/mod/mod_allowmethods.html.en b/docs/manual/mod/mod_allowmethods.html.en index 4823a7053a..fbbca6b2a5 100644 --- a/docs/manual/mod/mod_allowmethods.html.en +++ b/docs/manual/mod/mod_allowmethods.html.en @@ -35,13 +35,12 @@ <p>This module makes it easy to restrict what HTTP methods can used on an server. The most common configuration would be:</p> -<div class="example"><h3>Example</h3><p><code> -<Location /><br /> -<span class="indent"> - AllowMethods GET POST OPTIONS<br /> -</span> +<pre class="prettyprint lang-config"> +<Location /> + AllowMethods GET POST OPTIONS </Location> -</code></p></div> +</pre> + </div> <div id="quickview"><h3 class="directives">Directives</h3> @@ -67,13 +66,12 @@ RFC given in upper case. The GET and HEAD methods are treated as equivalent. The <code>reset</code> keyword can be used turn off <code class="module"><a href="../mod/mod_allowmethods.html">mod_allowmethods</a></code> in a deeper nested context:</p> -<div class="example"><h3>Example</h3><p><code> -<Location /svn><br /> -<span class="indent"> - AllowMethods reset<br /> -</span> +<pre class="prettyprint lang-config"> +<Location /svn> + AllowMethods reset </Location> -</code></p></div> +</pre> + <div class="note"><h3>Caution</h3> <p>The TRACE method can not be denied by this module, |