Browse Source

Spelling mistakes in Identity.API -> Startup.cs

In Startup.cs of Identity.API, there are spelling mistakes .
pull/1878/head
Onurkan Bakırcı 2 years ago
committed by GitHub
parent
commit
f477b0fbde
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Services/Identity/Identity.API/Startup.cs

+ 2
- 2
src/Services/Identity/Identity.API/Startup.cs View File

@ -133,8 +133,8 @@ namespace Microsoft.eShopOnContainers.Services.Identity.API
app.UseIdentityServer();
// Fix a problem with chrome. Chrome enabled a new feature "Cookies without SameSite must be secure",
// the coockies shold be expided from https, but in eShop, the internal communication in aks and docker compose is http.
// To avoid this problem, the policy of cookies shold be in Lax mode.
// the cookies should be expired from https, but in eShop, the internal communication in aks and docker compose is http.
// To avoid this problem, the policy of cookies should be in Lax mode.
app.UseCookiePolicy(new CookiePolicyOptions { MinimumSameSitePolicy = AspNetCore.Http.SameSiteMode.Lax });
app.UseRouting();


Loading…
Cancel
Save