Skip to content

Commit

Permalink
fix installation page ssh domain unavilable (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunny authored and tboerger committed Jan 4, 2017
1 parent 8f08ccd commit a5ea9b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routers/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit a5ea9b4

Please sign in to comment.