Skip to content

Commit fb99b89

Browse files
authored
Merge pull request #74 from dareste/main
fix: allow 'include' directive in 'if' and 'limit_except' blocks
2 parents 6bf177f + d1ab027 commit fb99b89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

analyze.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ const (
5555
)
5656

5757
// helpful directive location alias describing "any" context
58-
// doesn't include ngxHTTPSifConf, ngxHTTPLifConf, or ngxHTTPLmtConf.
5958
const ngxAnyConf = ngxMainConf | ngxEventConf | ngxMailMainConf | ngxMailSrvConf |
6059
ngxStreamMainConf | ngxStreamSrvConf | ngxStreamUpsConf |
61-
ngxHTTPMainConf | ngxHTTPSrvConf | ngxHTTPLocConf | ngxHTTPUpsConf
60+
ngxHTTPMainConf | ngxHTTPSrvConf | ngxHTTPLocConf | ngxHTTPUpsConf |
61+
ngxHTTPSifConf | ngxHTTPLifConf | ngxHTTPLmtConf
6262

6363
// map for getting bitmasks from certain context tuples
6464
//

0 commit comments

Comments
 (0)