Explorar o código

Merge branch 'enforce-domain' of https://github.com/gummiboll/grafana

Torkel Ödegaard %!s(int64=10) %!d(string=hai) anos
pai
achega
1f2cba81eb
Modificáronse 1 ficheiros con 10 adicións e 0 borrados
  1. 10 0
      pkg/middleware/middleware.go

+ 10 - 0
pkg/middleware/middleware.go

@@ -34,6 +34,16 @@ func GetContextHandler() macaron.Handler {
 			AllowAnonymous: false,
 		}
 
+		h := ctx.Req.Host
+		if i := strings.Index(h, ":"); i >= 0 {
+			h = h[:i]
+		}
+
+		if !strings.EqualFold(h, setting.Domain) {
+			ctx.Redirect(strings.TrimSuffix(setting.AppUrl, "/")+ctx.Req.RequestURI, 301)
+			return
+		}
+
 		// the order in which these are tested are important
 		// look for api key in Authorization header first
 		// then init session and look for userId in session