mirror of
https://github.com/bingohuang/docker-labs.git
synced 2025-07-13 17:42:53 +08:00
Remove unnecesary proxy
This commit is contained in:
parent
75f3c93612
commit
c4be25076d
@ -1,32 +0,0 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"crypto/tls"
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
||||
"github.com/gorilla/mux"
|
||||
"github.com/yhat/wsutil"
|
||||
)
|
||||
|
||||
func NewMultipleHostWebsocketReverseProxy() *wsutil.ReverseProxy {
|
||||
tlsConfig := &tls.Config{
|
||||
InsecureSkipVerify: true,
|
||||
}
|
||||
director := func(req *http.Request) {
|
||||
v := mux.Vars(req)
|
||||
|
||||
node, port := getTargetInfo(v, req)
|
||||
|
||||
if port == "443" {
|
||||
// Only proxy http for now
|
||||
req.URL.Scheme = "wss"
|
||||
} else {
|
||||
// Only proxy http for now
|
||||
req.URL.Scheme = "ws"
|
||||
}
|
||||
req.URL.Host = fmt.Sprintf("%s:%s", node, port)
|
||||
}
|
||||
|
||||
return &wsutil.ReverseProxy{Director: director, TLSClientConfig: tlsConfig}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user