Skip to content

Commit

Permalink
Change default cookie name (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoenig10 committed May 28, 2024
1 parent 57ebabd commit cada196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var (
tokenKey = flag.String("token-key", "", "The JWT signing key")
tokenExpiration = flag.Duration("token-expiration", 7*24*time.Hour, "The JWT expiration duration")

cookieName = flag.String("cookie-name", "_oidc", "The cookie name")
cookieName = flag.String("cookie-name", "_token", "The cookie name")
cookieDomain = flag.String("cookie-domain", "", "The cookie Domain attribute")
cookiePath = flag.String("cookie-path", "/", "The cookie Path attribute")

Expand Down

0 comments on commit cada196

Please sign in to comment.