From f2fe603117be5a0b3817f3927ad06a9c1573a3d6 Mon Sep 17 00:00:00 2001 From: Stefan Fritsch Date: Sun, 19 Sep 2010 18:27:10 +0000 Subject: [PATCH] Fix typos git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@998711 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_authz_host.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/manual/mod/mod_authz_host.xml b/docs/manual/mod/mod_authz_host.xml index 1685baceed4..84e1f05787a 100644 --- a/docs/manual/mod/mod_authz_host.xml +++ b/docs/manual/mod/mod_authz_host.xml @@ -209,21 +209,21 @@ address) equivalent. The TRACE method is not available to this provider, use TraceEnable instead.

-

The following examples will only allow GET, HEAD, POST, and OPTIONS +

The following example will only allow GET, HEAD, POST, and OPTIONS requests:

Require method GET POST OPTIONS
-

The following examples will allow GET, HEAD, POST, and OPTIONS +

The following example will allow GET, HEAD, POST, and OPTIONS requests without authentication, and require a valid user for all other methods:

<RequireAny>
- Require method GET POST OPTIONS
- Require valid-user
+  Require method GET POST OPTIONS
+  Require valid-user
</RequireAny>
-- 2.47.2