fix #833
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 + `",` + | ... | ... |
-
Please register or sign in to post a comment