From a5ea9b4f30b4e35a57e46baacc8ec4bf866e8d8a Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 4 Jan 2017 21:40:44 +0800 Subject: [PATCH] fix installation page ssh domain unavilable (#506) --- routers/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/install.go b/routers/install.go index f18a8dbca..b3b977238 100644 --- a/routers/install.go +++ b/routers/install.go @@ -241,7 +241,7 @@ func InstallPost(ctx *context.Context, form auth.InstallForm) { cfg.Section("").Key("APP_NAME").SetValue(form.AppName) cfg.Section("repository").Key("ROOT").SetValue(form.RepoRootPath) cfg.Section("").Key("RUN_USER").SetValue(form.RunUser) - cfg.Section("server").Key("DOMAIN").SetValue(form.Domain) + cfg.Section("server").Key("SSH_DOMAIN").SetValue(form.Domain) cfg.Section("server").Key("HTTP_PORT").SetValue(form.HTTPPort) cfg.Section("server").Key("ROOT_URL").SetValue(form.AppURL)