Skip to content

Commit a5ea9b4

Browse files
lunnytboerger
authored andcommitted
fix installation page ssh domain unavilable (#506)
1 parent 8f08ccd commit a5ea9b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routers/install.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ func InstallPost(ctx *context.Context, form auth.InstallForm) {
241241
cfg.Section("").Key("APP_NAME").SetValue(form.AppName)
242242
cfg.Section("repository").Key("ROOT").SetValue(form.RepoRootPath)
243243
cfg.Section("").Key("RUN_USER").SetValue(form.RunUser)
244-
cfg.Section("server").Key("DOMAIN").SetValue(form.Domain)
244+
cfg.Section("server").Key("SSH_DOMAIN").SetValue(form.Domain)
245245
cfg.Section("server").Key("HTTP_PORT").SetValue(form.HTTPPort)
246246
cfg.Section("server").Key("ROOT_URL").SetValue(form.AppURL)
247247

0 commit comments

Comments
 (0)