Disable gorilla/mux URL cleaning to prevent sending redirect
This fixes #167 and #651. By default, gorilla/mux cleans URL paths such that adjacent slashes are collapsed into one single slash. This behavior is pretty common in application stacks and it is fine, but for Traefik, this can lead to incorrect URL paths forwarded to backend servers. See https://github.com/gorilla/mux/issues/94 for background.
This commit is contained in:
parent
7e8937a332
commit
82cb21fca3
1 changed files with 1 additions and 0 deletions
|
@ -668,6 +668,7 @@ func (server *Server) buildDefaultHTTPRouter() *mux.Router {
|
||||||
router := mux.NewRouter()
|
router := mux.NewRouter()
|
||||||
router.NotFoundHandler = http.HandlerFunc(notFoundHandler)
|
router.NotFoundHandler = http.HandlerFunc(notFoundHandler)
|
||||||
router.StrictSlash(true)
|
router.StrictSlash(true)
|
||||||
|
router.SkipClean(true)
|
||||||
return router
|
return router
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue