From: Daniel Gruno Date: Sat, 28 Apr 2012 07:54:58 +0000 (+0000) Subject: Missed a FilesMatch section, meh. X-Git-Tag: 2.5.0-alpha~6950 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc403785bfbd6316a323f665a7953620f8ffe7d9;p=thirdparty%2Fapache%2Fhttpd.git Missed a FilesMatch section, meh. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1331701 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 784171e41f0..869190884a7 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -1769,7 +1769,11 @@ filenames does. However, it accepts a regular expression. For example:

-
<FilesMatch "\.(gif|jpe?g|png)$">
+
+<FilesMatch "\.(gif|jpe?g|png)$">
+    # ...
+</FilesMatch>
+

would match most common Internet graphics formats.

diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 1849e625d5a..539749267b5 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -1701,7 +1701,11 @@ filenames does. However, it accepts a regular expression. For example:

- <FilesMatch "\.(gif|jpe?g|png)$"> + +<FilesMatch "\.(gif|jpe?g|png)$"> + # ... +</FilesMatch> +

would match most common Internet graphics formats.