Skip to content

Commit

Permalink
fix validate issuer false (#875)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybeeelsdon authored Nov 28, 2024
1 parent 77e6af9 commit 0de7193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TRE-API/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
ValidAudiences = treKeyCloakSettings.ValidAudiences.Trim().Split(',').ToList(),
ValidIssuer = treKeyCloakSettings.Authority,
ValidateIssuerSigningKey = true,
ValidateIssuer = true,
ValidateIssuer = false,
ValidateLifetime = true
};
builder.Services.Configure<ForwardedHeadersOptions>(options =>
Expand Down

0 comments on commit 0de7193

Please sign in to comment.