Skip to content

Commit dc8dddb

Browse files
authored
fix: use correct env var name to pass auth jwks to storage container (#3502)
1 parent 730c0c5 commit dc8dddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/start/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ EOF
833833
"ANON_KEY=" + utils.Config.Auth.AnonKey.Value,
834834
"SERVICE_KEY=" + utils.Config.Auth.ServiceRoleKey.Value,
835835
"AUTH_JWT_SECRET=" + utils.Config.Auth.JwtSecret.Value,
836-
fmt.Sprintf("AUTH_JWT_JWKS=%s", jwks),
836+
fmt.Sprintf("JWT_JWKS=%s", jwks),
837837
fmt.Sprintf("DATABASE_URL=postgresql://supabase_storage_admin:%s@%s:%d/%s", dbConfig.Password, dbConfig.Host, dbConfig.Port, dbConfig.Database),
838838
fmt.Sprintf("FILE_SIZE_LIMIT=%v", utils.Config.Storage.FileSizeLimit),
839839
"STORAGE_BACKEND=file",

0 commit comments

Comments
 (0)