8af04752 by astaxie

fix #833

1 parent a760e46f
Showing 1 changed file with 1 additions and 1 deletions
...@@ -378,7 +378,7 @@ func initBeforeHttpRun() { ...@@ -378,7 +378,7 @@ func initBeforeHttpRun() {
378 if sessionConfig == "" { 378 if sessionConfig == "" {
379 sessionConfig = `{"cookieName":"` + SessionName + `",` + 379 sessionConfig = `{"cookieName":"` + SessionName + `",` +
380 `"gclifetime":` + strconv.FormatInt(SessionGCMaxLifetime, 10) + `,` + 380 `"gclifetime":` + strconv.FormatInt(SessionGCMaxLifetime, 10) + `,` +
381 `"providerConfig":"` + SessionSavePath + `",` + 381 `"providerConfig":"` + filepath.ToSlash(SessionSavePath) + `",` +
382 `"secure":` + strconv.FormatBool(EnableHttpTLS) + `,` + 382 `"secure":` + strconv.FormatBool(EnableHttpTLS) + `,` +
383 `"sessionIDHashFunc":"` + SessionHashFunc + `",` + 383 `"sessionIDHashFunc":"` + SessionHashFunc + `",` +
384 `"sessionIDHashKey":"` + SessionHashKey + `",` + 384 `"sessionIDHashKey":"` + SessionHashKey + `",` +
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!