mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
Refactored proxy middleware to return errors
This commit is contained in:
parent
076d4e0ec5
commit
6bf36d922c
1 changed files with 5 additions and 5 deletions
|
@ -24,8 +24,8 @@ func New(c middleware.Controller) (middleware.Middleware, error) {
|
|||
rules = append(rules, rule)
|
||||
}
|
||||
|
||||
return func(next http.HandlerFunc) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
return func(next middleware.HandlerFunc) middleware.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) (int, error) {
|
||||
|
||||
for _, rule := range rules {
|
||||
if middleware.Path(r.URL.Path).Matches(rule.from) {
|
||||
|
@ -45,11 +45,11 @@ func New(c middleware.Controller) (middleware.Middleware, error) {
|
|||
// TODO: Construct this before; not during every request, if possible
|
||||
proxy := httputil.NewSingleHostReverseProxy(baseUrl)
|
||||
proxy.ServeHTTP(w, r)
|
||||
|
||||
} else {
|
||||
next(w, r)
|
||||
return 0, nil
|
||||
}
|
||||
}
|
||||
|
||||
return next(w, r)
|
||||
}
|
||||
}, nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue