From 5095c3647d9433ca1bf1e65a64b89b780c8e73aa Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Fri, 17 May 2019 13:16:43 +0100 Subject: [PATCH] Add redis-connection-url flag --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index a74c245..f647651 100644 --- a/main.go +++ b/main.go @@ -76,6 +76,7 @@ func main() { flagSet.Bool("cookie-httponly", true, "set HttpOnly cookie flag") flagSet.String("session-store-type", "cookie", "the session storage provider to use") + flagSet.String("redis-connection-url", "", "URL of redis server for redis session storage (eg: redis://HOST[:PORT])") 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")