From 002b8af94a6a0f73f140d6e11e0ce173805d5472 Mon Sep 17 00:00:00 2001 From: xishang0128 Date: Sat, 20 Apr 2024 22:22:17 +0800 Subject: [PATCH] Chore: Let CA read following homeDir --- component/ca/config.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/component/ca/config.go b/component/ca/config.go index 53cb98ab..d56809a1 100644 --- a/component/ca/config.go +++ b/component/ca/config.go @@ -13,6 +13,8 @@ import ( "strconv" "strings" "sync" + + C "github.com/metacubex/mihomo/constant" ) var trustCerts []*x509.Certificate @@ -117,7 +119,7 @@ func GetTLSConfig(tlsConfig *tls.Config, fingerprint string, customCA string, cu var certificate []byte var err error if len(customCA) > 0 { - certificate, err = os.ReadFile(customCA) + certificate, err = os.ReadFile(C.Path.Resolve(customCA)) if err != nil { return nil, fmt.Errorf("load ca error: %w", err) }