Browse Source

Don't use cookies on the proxy, just pass through the cookie header (#1494)

Co-authored-by: chris van de steeg <chris@careconnections.nl>
pull/1497/head
Chris van de Steeg 3 years ago
committed by GitHub
parent
commit
d146a51332
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/Microsoft.Tye.Hosting/HttpProxyService.cs

3
src/Microsoft.Tye.Hosting/HttpProxyService.cs

@ -43,7 +43,8 @@ namespace Microsoft.Tye.Hosting
{
AllowAutoRedirect = false,
AutomaticDecompression = DecompressionMethods.None,
UseProxy = false
UseProxy = false,
UseCookies = false,
}));
foreach (var service in application.Services.Values)

Loading…
Cancel
Save