From bd1d7d1509e87c8ace6d8372cd1db7535ce06525 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 19 Aug 2015 20:36:19 +0800 Subject: Able to set SSH port when install, update Docker docs --- routers/install.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'routers') diff --git a/routers/install.go b/routers/install.go index 4e7dd390..3fcaee8d 100644 --- a/routers/install.go +++ b/routers/install.go @@ -118,6 +118,7 @@ func Install(ctx *middleware.Context) { } form.Domain = setting.Domain + form.SSHPort = setting.SSHPort form.HTTPPort = setting.HttpPort form.AppUrl = setting.AppUrl @@ -241,6 +242,13 @@ func InstallPost(ctx *middleware.Context, form auth.InstallForm) { cfg.Section("server").Key("HTTP_PORT").SetValue(form.HTTPPort) cfg.Section("server").Key("ROOT_URL").SetValue(form.AppUrl) + if form.SSHPort == 0 { + cfg.Section("server").Key("DISABLE_SSH").SetValue("true") + } else { + cfg.Section("server").Key("DISABLE_SSH").SetValue("false") + cfg.Section("server").Key("SSH_PORT").SetValue(com.ToStr(form.SSHPort)) + } + if len(strings.TrimSpace(form.SMTPHost)) > 0 { cfg.Section("mailer").Key("ENABLED").SetValue("true") cfg.Section("mailer").Key("HOST").SetValue(form.SMTPHost) -- cgit v1.2.3