1
0
mirror of https://github.com/umputun/reproxy.git synced 2024-11-16 20:25:52 +02:00

fix order of middlewares to handle limiting by IP after match handler sets ctx

This commit is contained in:
Umputun 2023-11-26 17:10:16 -06:00
parent 672d4c2af8
commit bddb144f60
2 changed files with 13 additions and 12 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ docker-compose-private.yml
.vscode
.idea
*.gpg
reproxy-private.yml

View File

@ -123,11 +123,11 @@ func (h *Http) Run(ctx context.Context) error {
handler := R.Wrap(h.proxyHandler(),
R.Recoverer(log.Default()), // recover on errors
signatureHandler(h.Signature, h.Version), // send app signature
h.OnlyFrom.Handler, // limit source (remote) IPs if defined
h.pingHandler, // respond to /ping
basicAuthHandler(h.BasicAuthEnabled, h.BasicAuthAllowed), // basic auth
h.healthMiddleware, // respond to /health
h.matchHandler, // set matched routes to context
h.OnlyFrom.Handler, // limit source (remote) IPs if defined
limiterSystemHandler(h.ThrottleSystem), // limit total requests/sec
limiterUserHandler(h.ThrottleUser), // req/seq per user/route match
h.mgmtHandler(), // handles /metrics and /routes for prometheus