We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c41b8 commit e71302cCopy full SHA for e71302c
1 file changed
internal/start/start.go
@@ -627,7 +627,9 @@ EOF
627
if keys, err := json.Marshal(utils.Config.Auth.SigningKeys); err == nil {
628
env = append(env, "GOTRUE_JWT_KEYS="+string(keys))
629
// TODO: deprecate HS256 when it's no longer supported
630
+ // TODO: remove VALIDMETHODS after a while to avoid breaking changes
631
env = append(env, "GOTRUE_JWT_VALIDMETHODS=HS256,RS256,ES256")
632
+ env = append(env, "GOTRUE_JWT_VALID_METHODS=HS256,RS256,ES256")
633
}
634
635
if utils.Config.Auth.Email.Smtp != nil && utils.Config.Auth.Email.Smtp.Enabled {
0 commit comments