Compare commits

...

3 Commits

Author SHA1 Message Date
f0013320a6 🔖 release v1.0.3 2021-04-09 10:45:16 +08:00
974caf74d9 🔥 只初始化一次client 2021-04-09 10:38:57 +08:00
0bb02664c7 🐛 fix: #85 修复 x509: certificate signed by unknown authority (#86)
* 修复 x509: certificate signed by unknown authority

* 添加忽略证书验证
2021-04-09 10:30:03 +08:00
3 changed files with 6 additions and 3 deletions

View File

@ -78,4 +78,3 @@ func DoPost(url string, request interface{}, auth string) (body []byte, err erro
log.Debugf("请求返回信息:%s", string(body))
return
}

View File

@ -1,6 +1,7 @@
package bootstrap
import (
"crypto/tls"
"github.com/Xhofe/alist/conf"
log "github.com/sirupsen/logrus"
"net/http"
@ -9,5 +10,8 @@ import (
// init request client
func InitClient() {
log.Infof("初始化client...")
conf.Client = &http.Client{}
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
conf.Client = &http.Client{Transport: tr}
}

View File

@ -22,7 +22,7 @@ var (
var Conf = new(Config)
const (
VERSION = "v1.0.2"
VERSION = "v1.0.3"
ImageThumbnailProcess = "image/resize,w_50"
VideoThumbnailProcess = "video/snapshot,t_0,f_jpg,w_50"