diff options
author | Rich Bowen <rbowen@apache.org> | 2014-03-11 17:43:39 +0100 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2014-03-11 17:43:39 +0100 |
commit | fb7eb0949eb8258fd98c31193cd488d71a5241b7 (patch) | |
tree | e6291c59ce1c0f4fee6608c448cac246627cc6cd /docs/manual/mod/mod_lua.xml | |
parent | These are in 2.4.x (diff) | |
download | apache2-fb7eb0949eb8258fd98c31193cd488d71a5241b7.tar.xz apache2-fb7eb0949eb8258fd98c31193cd488d71a5241b7.zip |
Ensure that .lua.foo files aren't affected
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1576415 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_lua.xml')
-rw-r--r-- | docs/manual/mod/mod_lua.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 6f780849d7..6fab821217 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -69,7 +69,9 @@ trust, as it can be abused to change the internal workings of httpd.</p> which can be used with an <code>AddHandler</code> directive:</p> <highlight language="config"> -AddHandler lua-script .lua +<FilesMatch "\.lua$"> + AddHandler lua-script .lua +</FilesMatch> </highlight> <p> |