1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-21 08:31:27 -05:00

Fix TLS errors when using acme/autocert for local connections (#5820)

This commit is contained in:
Joona Hoikkala 2019-01-24 02:47:54 +02:00 committed by techknowlogick
parent 331c9120e8
commit 3b364029f7

View file

@ -39,6 +39,7 @@ func decodeJSONError(resp *http.Response) *Response {
func newInternalRequest(url, method string) *httplib.Request {
req := newRequest(url, method).SetTLSClientConfig(&tls.Config{
InsecureSkipVerify: true,
ServerName: setting.Domain,
})
if setting.Protocol == setting.UnixSocket {
req.SetTransport(&http.Transport{