From b2cbe36f0f157e9a2ca00569967d878fbf4bb292 Mon Sep 17 00:00:00 2001 From: gVisor bot Date: Thu, 1 Apr 2021 15:35:33 +0800 Subject: [PATCH] Chore: use mixed-port instead of port when initial config (#1319) --- config/initial.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initial.go b/config/initial.go index a2da9384..df8452b9 100644 --- a/config/initial.go +++ b/config/initial.go @@ -66,7 +66,7 @@ func Init(dir string) error { if err != nil { return fmt.Errorf("can't create file %s: %s", C.Path.Config(), err.Error()) } - f.Write([]byte(`port: 7890`)) + f.Write([]byte(`mixed-port: 7890`)) f.Close() }