Skip to content

Commit

Permalink
fix: allow 'include' directive in 'if' and 'limit_except' blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
dareste committed Oct 9, 2023
1 parent 73c76f9 commit 9deec04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyze.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const (
)

// helpful directive location alias describing "any" context
// doesn't include ngxHTTPSifConf, ngxHTTPLifConf, or ngxHTTPLmtConf.
const ngxAnyConf = ngxMainConf | ngxEventConf | ngxMailMainConf | ngxMailSrvConf |
ngxStreamMainConf | ngxStreamSrvConf | ngxStreamUpsConf |
ngxHTTPMainConf | ngxHTTPSrvConf | ngxHTTPLocConf | ngxHTTPUpsConf
ngxHTTPMainConf | ngxHTTPSrvConf | ngxHTTPLocConf | ngxHTTPUpsConf |
ngxHTTPSifConf | ngxHTTPLifConf | ngxHTTPLmtConf

// map for getting bitmasks from certain context tuples
//
Expand Down

0 comments on commit 9deec04

Please sign in to comment.