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
1 changed files with 1 additions and 0 deletions

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{