set xray.location.cert to asset path (#131)

This commit is contained in:
patterniha 2025-03-26 15:34:16 +03:30 committed by GitHub
parent 4ec3c7e177
commit d56745bc86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,6 +31,7 @@ import (
const (
v2Asset = "xray.location.asset"
v2Cert = "xray.location.cert"
xudpBaseKey = "xray.xudp.basekey"
)
@ -188,6 +189,7 @@ func InitV2Env(envPath string, key string) {
//We need to set location outside V2Ray
if len(envPath) > 0 {
os.Setenv(v2Asset, envPath)
os.Setenv(v2Cert, envPath)
}
if len(key) > 0 {
os.Setenv(xudpBaseKey, key)