php小編草莓在解決Go代理失敗問題時,了解路由的重要性。路由是網路通訊中的核心概念,它決定了封包應該如何從來源位址傳送到目標位址。在使用Go語言進行代理時,正確配置路由非常重要。透過深入了解路由的原理和相關配置,我們可以有效解決Go代理失敗的問題,確保網路通訊的穩定性和可靠性。在本文中,我們將介紹路由的工作原理以及常見的設定方法,幫助大家更能理解並應用路由技術。
我有一個像這樣的簡單 go 代理程式。我想透過它代理請求並修改某些網站的回應。這些網站透過 tls 運行,但我的代理只是本地伺服器。
func main() { target, _ := url.parse("https://www.google.com") proxy := httputil.newsinglehostreverseproxy(target) proxy.modifyresponse = rewritebody http.handle("/", proxy) http.listenandserve(":80", proxy) }
結果:404錯誤,如下圖所示:
據我了解,代理伺服器會發起請求並關閉請求,然後返回修改後的回應。我不確定這裡會失敗。我是否遺漏了將標頭轉發到此請求失敗的地方的某些內容?
我已經讓路由正常運作了。最初,我有興趣修改回應,但除了看到 magical
標頭之外,沒有看到任何變化。
func modifyResponse() func(*http.Response) error { return func(resp *http.Response) error { resp.Header.Set("X-Proxy", "Magical") b, _ := ioutil.ReadAll(resp.Body) b = bytes.Replace(b, []byte("About"), []byte("Modified String Test"), -1) // replace html body := ioutil.NopCloser(bytes.NewReader(b)) resp.Body = body resp.ContentLength = int64(len(b)) resp.Header.Set("Content-Length", strconv.Itoa(len(b))) resp.Body.Close() return nil } } func main() { target, _ := url.Parse("https://www.google.com") proxy := httputil.NewSingleHostReverseProxy(target) director := proxy.Director proxy.Director = func(r *http.Request) { director(r) r.Host = r.URL.Hostname() } proxy.ModifyResponse = modifyResponse() http.Handle("/", proxy) http.ListenAndServe(":80", proxy) }
文件中提到了關鍵問題,但從文件中並不清楚如何準確處理:
newsinglehostreverseproxy 不會重寫 host 標頭。重寫 主機標頭,直接將 reverseproxy 與自訂 director 策略一起使用。
https://www.php.cn/link/747e32ab0fea7fbd2ad9ec03daa3f840
#您沒有直接使用 reverseproxy
。您仍然可以使用 newsinglehostreverseproxy
並調整 director
函數,如下所示:
func main() { target, _ := url.Parse("https://www.google.com") proxy := httputil.NewSingleHostReverseProxy(target) director := proxy.Director proxy.Director = func(r *http.Request) { director(r) r.Host = r.URL.Hostname() // Adjust Host } http.Handle("/", proxy) http.ListenAndServe(":80", proxy) }
以上是了解路由時 Go 代理失敗的詳細內容。更多資訊請關注PHP中文網其他相關文章!