diff --git a/handlers/bootstrap.go b/handlers/bootstrap.go index 1464ecbb..a0e92d87 100644 --- a/handlers/bootstrap.go +++ b/handlers/bootstrap.go @@ -60,7 +60,7 @@ func Register(extend HandlerExtender) { corsHandler := gh.CORS(gh.AllowCredentials(), gh.AllowedHeaders([]string{"x-requested-with", "content-type"}), gh.AllowedMethods([]string{"GET", "POST", "HEAD", "DELETE"}), gh.AllowedOriginValidator(func(origin string) bool { if strings.Contains(origin, "localhost") || strings.HasSuffix(origin, "play-with-docker.com") || - strings.HasSuffix(origin, "play-with-kuberentes.com") || + strings.HasSuffix(origin, "play-with-kubernetes.com") || strings.HasSuffix(origin, "play-with-moby.com") { return true }