redirect-middleware: Redirect to /minio only if client is a browser and the request is not V4 signed. (#2469)

fixes #2356
master
Krishna Srinivas 8 years ago committed by Harshavardhana
parent 10feb1af3f
commit 674fdc4304
  1. 2
      generic-handlers.go

@ -77,7 +77,7 @@ func setBrowserRedirectHandler(h http.Handler) http.Handler {
func (h redirectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { func (h redirectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Re-direction handled specifically for browsers. // Re-direction handled specifically for browsers.
if strings.Contains(r.Header.Get("User-Agent"), "Mozilla") { if strings.Contains(r.Header.Get("User-Agent"), "Mozilla") && !isRequestSignatureV4(r) {
// '/' is redirected to 'locationPrefix/' // '/' is redirected to 'locationPrefix/'
// '/webrpc' is redirected to 'locationPrefix/webrpc' // '/webrpc' is redirected to 'locationPrefix/webrpc'
// '/login' is redirected to 'locationPrefix/login' // '/login' is redirected to 'locationPrefix/login'

Loading…
Cancel
Save