diff --git a/proxyserver/main.go b/proxyserver/main.go index 26e1a10a..fa6aee17 100644 --- a/proxyserver/main.go +++ b/proxyserver/main.go @@ -3,6 +3,7 @@ package main import ( "crypto/tls" "fmt" + "fusenapi/utils/fsconfig" "io" "io/ioutil" "log" @@ -118,12 +119,14 @@ func main() { ServerAddress := ":9900" log.Println("listen on ", ServerAddress) - keydata, err := os.ReadFile("/opt/server.fusen.3718.cn.key") + envcfg := fsconfig.GetEnvCofing() + + keydata, err := os.ReadFile(envcfg.ProxyServer.KeyFile) if err != nil { panic(err) } - pemdata, err := os.ReadFile("/opt/server.fusen.3718.cn.pem") + pemdata, err := os.ReadFile(envcfg.ProxyServer.PemFile) if err != nil { panic(err) } diff --git a/utils/fsconfig/config.go b/utils/fsconfig/config.go index 1bb0cc0a..0d685ad9 100644 --- a/utils/fsconfig/config.go +++ b/utils/fsconfig/config.go @@ -21,6 +21,15 @@ type EnvConfig struct { NamespaceId string `yaml:"namespace"` DataId string `yaml:"dataid"` Group string `yaml:"group"` + ProxyServer struct { + KeyFile string `yaml:"key"` + PemFile string `yaml:"pem"` + } `yaml:"proxyserver"` + + ServerBackend struct { + KeyFile string `yaml:"key"` + PemFile string `yaml:"pem"` + } `yaml:"serverbackend"` } var optPathDirs = []string{"/opt", "./", "../", "../../"}