add debug output
This commit is contained in:
parent
59a0e9bb44
commit
784ecf0399
10
main.go
10
main.go
|
@ -116,6 +116,12 @@ func (srv *server) newSession(ctx context.Context) func(ssh.Session) {
|
||||||
req.Header.Set("X-Origin-Host", host)
|
req.Header.Set("X-Origin-Host", host)
|
||||||
req.URL.Scheme = "http"
|
req.URL.Scheme = "http"
|
||||||
req.URL.Host = host
|
req.URL.Host = host
|
||||||
|
|
||||||
|
requestDump, err := httputil.DumpRequest(req, req.Method == http.MethodPost || req.Method == http.MethodPut)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
}
|
||||||
|
fmt.Fprintln(s, string(requestDump))
|
||||||
}
|
}
|
||||||
u.proxy = &httputil.ReverseProxy{Director: director}
|
u.proxy = &httputil.ReverseProxy{Director: director}
|
||||||
fmt.Fprintf(s, "Created HTTP listener at: %v%v\n", u.name, srv.domainSuffix)
|
fmt.Fprintf(s, "Created HTTP listener at: %v%v\n", u.name, srv.domainSuffix)
|
||||||
|
@ -308,6 +314,7 @@ func (srv *server) handleHTTP(rw http.ResponseWriter, r *http.Request) {
|
||||||
if !ok || u.proxy == nil {
|
if !ok || u.proxy == nil {
|
||||||
fmt.Fprintln(rw, "NOT FOUND", name)
|
fmt.Fprintln(rw, "NOT FOUND", name)
|
||||||
}
|
}
|
||||||
|
|
||||||
u.proxy.ServeHTTP(rw, r)
|
u.proxy.ServeHTTP(rw, r)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -427,8 +434,11 @@ func (m *serverMux) Serve(ctx context.Context) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<<<<<<< Updated upstream
|
||||||
func fingerprintHuman(pubKey ssh.PublicKey) string {
|
func fingerprintHuman(pubKey ssh.PublicKey) string {
|
||||||
sha256sum := sha256.Sum256(pubKey.Marshal())
|
sha256sum := sha256.Sum256(pubKey.Marshal())
|
||||||
h, _ := humanhash.Humanize(sha256sum[:], 3)
|
h, _ := humanhash.Humanize(sha256sum[:], 3)
|
||||||
return h
|
return h
|
||||||
}
|
}
|
||||||
|
=======
|
||||||
|
>>>>>>> Stashed changes
|
||||||
|
|
Loading…
Reference in New Issue
Block a user