1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 01:40:44 +00:00

add env variable for config file

This commit is contained in:
Darien Raymond 2017-12-05 11:58:12 +01:00
parent 81c4f23691
commit 53b0f91873
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 30 additions and 11 deletions

View File

@ -70,3 +70,9 @@ func GetPluginDirectory() string {
pluginDir := EnvFlag{Name: name, AltName: NormalizeEnvName(name)}.GetValue(getExecuableSubDir("plugins"))
return pluginDir
}
func GetConfigurationPath() string {
const name = "v2ray.location.config"
configPath := EnvFlag{Name: name, AltName: NormalizeEnvName(name)}.GetValue(getExecutableDir)
return filepath.Join(configPath, "config.json")
}

View File

@ -13,25 +13,40 @@ import (
"syscall"
"v2ray.com/core"
"v2ray.com/core/common/platform"
_ "v2ray.com/core/main/distro/all"
)
var (
configFile string
configFile = flag.String("config", "", "Config file for V2Ray.")
version = flag.Bool("version", false, "Show current version of V2Ray.")
test = flag.Bool("test", false, "Test config file only, without launching V2Ray server.")
format = flag.String("format", "json", "Format of input file.")
plugin = flag.Bool("plugin", false, "True to load plugins.")
)
func init() {
defaultConfigFile := ""
workingDir, err := filepath.Abs(filepath.Dir(os.Args[0]))
if err == nil {
defaultConfigFile = filepath.Join(workingDir, "config.json")
func fileExists(file string) bool {
info, err := os.Stat(file)
return err == nil && !info.IsDir()
}
func getConfigFilePath() string {
if len(*configFile) > 0 {
return *configFile
}
flag.StringVar(&configFile, "config", defaultConfigFile, "Config file for this Point server.")
if workingDir, err := os.Getwd(); err == nil {
configFile := filepath.Join(workingDir, "config.json")
if fileExists(configFile) {
return configFile
}
}
if configFile := platform.GetConfigurationPath(); fileExists(configFile) {
return configFile
}
return ""
}
func GetConfigFormat() core.ConfigFormat {
@ -46,9 +61,7 @@ func GetConfigFormat() core.ConfigFormat {
}
func startV2Ray() (core.Server, error) {
if len(configFile) == 0 {
return nil, newError("config file is not set")
}
configFile := getConfigFilePath()
var configInput io.Reader
if configFile == "stdin:" {
configInput = os.Stdin