aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@rbsd.ankarstrom.se>2021-04-23 16:23:14 +0000
committerroot <root@rbsd.ankarstrom.se>2021-04-23 16:23:14 +0000
commit3d91ba4623e3d8538d61d610cae3935178f623bf (patch)
tree47b556e0254b3872cc8bb42403c7f8b200cfd753
parentbb8c79deb85b9982009a805c77676c35a33ed277 (diff)
downloadApache-Inject-3d91ba4623e3d8538d61d610cae3935178f623bf.tar.gz
Extend allowed places for directive
-rw-r--r--Inject.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Inject.pm b/Inject.pm
index 5b6df8d..10c5934 100644
--- a/Inject.pm
+++ b/Inject.pm
@@ -5,12 +5,12 @@ use warnings;
use Apache2::CmdParms ();
use Apache2::Module ();
-use Apache2::Const qw/OR_LIMIT TAKE12/;
+use Apache2::Const qw/OR_LIMIT OR_AUTHCFG TAKE12/;
my @directives = (
{ name => 'Inject',
func => __PACKAGE__.'::Inject',
- req_override => OR_LIMIT,
+ req_override => OR_LIMIT|OR_AUTHCFG,
args_how => TAKE12,
errmsg => 'Inject HeadFile[!] FootFile[!]' }
);