diff options
author | root <root@rbsd.ankarstrom.se> | 2021-04-23 16:23:14 +0000 |
---|---|---|
committer | root <root@rbsd.ankarstrom.se> | 2021-04-23 16:23:14 +0000 |
commit | 3d91ba4623e3d8538d61d610cae3935178f623bf (patch) | |
tree | 47b556e0254b3872cc8bb42403c7f8b200cfd753 | |
parent | bb8c79deb85b9982009a805c77676c35a33ed277 (diff) | |
download | Apache-Inject-3d91ba4623e3d8538d61d610cae3935178f623bf.tar.gz |
Extend allowed places for directive
-rw-r--r-- | Inject.pm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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[!]' } ); |