From 104858407514e33330dfc554d67a64c4184fea86 Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Tue, 7 May 2019 14:05:12 +0100 Subject: [PATCH] Add session-store-type flag --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index b74540b..a74c245 100644 --- a/main.go +++ b/main.go @@ -75,6 +75,8 @@ func main() { flagSet.Bool("cookie-secure", true, "set secure (HTTPS) cookie flag") flagSet.Bool("cookie-httponly", true, "set HttpOnly cookie flag") + flagSet.String("session-store-type", "cookie", "the session storage provider to use") + flagSet.String("logging-filename", "", "File to log requests to, empty for stdout") flagSet.Int("logging-max-size", 100, "Maximum size in megabytes of the log file before rotation") flagSet.Int("logging-max-age", 7, "Maximum number of days to retain old log files")