Unknown 11 年之前
父節點
當前提交
07c3d497a7
共有 1 個文件被更改,包括 6 次插入4 次删除
  1. 6 4
      modules/base/conf.go

+ 6 - 4
modules/base/conf.go

@@ -316,10 +316,12 @@ func NewConfigContext() {
 	}
 	Cfg.BlockMode = false
 
-	cfgPath = filepath.Join(workDir, "custom/conf/app.ini")
-	if com.IsFile(cfgPath) {
-		if err = Cfg.AppendFiles(cfgPath); err != nil {
-			qlog.Fatalf("Cannot load config file(%s): %v\n", cfgPath, err)
+	cfgPaths := []string{os.Getenv("GOGS_CONFIG"), filepath.Join(workDir, "custom/conf/app.ini")}
+	for _, cfgPath := range cfgPaths {
+		if com.IsFile(cfgPath) {
+			if err = Cfg.AppendFiles(cfgPath); err != nil {
+				qlog.Fatalf("Cannot load config file(%s): %v\n", cfgPath, err)
+			}
 		}
 	}