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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
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) |
|
|
|
|