|
@@ -154,6 +154,7 @@ func Install(ctx *middleware.Context) {
|
|
form.SSHPort = setting.SSHPort
|
|
form.SSHPort = setting.SSHPort
|
|
form.HTTPPort = setting.HttpPort
|
|
form.HTTPPort = setting.HttpPort
|
|
form.AppUrl = setting.AppUrl
|
|
form.AppUrl = setting.AppUrl
|
|
|
|
+ form.LogRootPath = setting.LogRootPath
|
|
|
|
|
|
// E-mail service settings
|
|
// E-mail service settings
|
|
if setting.MailService != nil {
|
|
if setting.MailService != nil {
|
|
@@ -241,6 +242,14 @@ func InstallPost(ctx *middleware.Context, form auth.InstallForm) {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // Test log root path.
|
|
|
|
+ form.LogRootPath = strings.Replace(form.LogRootPath, "\\", "/", -1)
|
|
|
|
+ if err := os.MkdirAll(form.LogRootPath, os.ModePerm); err != nil {
|
|
|
|
+ ctx.Data["Err_LogRootPath"] = true
|
|
|
|
+ ctx.RenderWithErr(ctx.Tr("install.invalid_log_root_path", err), INSTALL, &form)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
// Check run user.
|
|
// Check run user.
|
|
curUser := user.CurrentUsername()
|
|
curUser := user.CurrentUsername()
|
|
if form.RunUser != curUser {
|
|
if form.RunUser != curUser {
|
|
@@ -329,6 +338,7 @@ func InstallPost(ctx *middleware.Context, form auth.InstallForm) {
|
|
|
|
|
|
cfg.Section("log").Key("MODE").SetValue("file")
|
|
cfg.Section("log").Key("MODE").SetValue("file")
|
|
cfg.Section("log").Key("LEVEL").SetValue("Info")
|
|
cfg.Section("log").Key("LEVEL").SetValue("Info")
|
|
|
|
+ cfg.Section("log").Key("ROOT_PATH").SetValue(form.LogRootPath)
|
|
|
|
|
|
cfg.Section("security").Key("INSTALL_LOCK").SetValue("true")
|
|
cfg.Section("security").Key("INSTALL_LOCK").SetValue("true")
|
|
cfg.Section("security").Key("SECRET_KEY").SetValue(base.GetRandomString(15))
|
|
cfg.Section("security").Key("SECRET_KEY").SetValue(base.GetRandomString(15))
|