From: Rich Bowen Date: Wed, 15 Apr 2015 20:59:47 +0000 (+0000) Subject: Correct a regex so that it doesn't match the file named '.cgi' X-Git-Tag: 2.4.13~214 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50ca7d8d003463cfa12d4b7ce8094453c6520f00;p=apache Correct a regex so that it doesn't match the file named '.cgi' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1673957 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_mime.xml b/docs/manual/mod/mod_mime.xml index e6c913e0ec..4fde0ae916 100644 --- a/docs/manual/mod/mod_mime.xml +++ b/docs/manual/mod/mod_mime.xml @@ -144,7 +144,7 @@ module="mod_mime_magic">MimeMagicFile Configure handler based on final extension only -<FilesMatch "\.cgi$"> +<FilesMatch ".+\.cgi$"> SetHandler cgi-script </FilesMatch>