fix for dockerhost HELIUM

This commit is contained in:
=Corey Hulen
2015-06-18 10:55:51 -08:00
parent c4788e0473
commit 4cabe1baea
5 changed files with 19 additions and 4 deletions

View File

@@ -303,6 +303,10 @@ func IsTestDomain(r *http.Request) bool {
return true
}
if strings.Index(r.Host, "dockerhost") == 0 {
return true
}
if strings.Index(r.Host, "test") == 0 {
return true
}