From d146a51332d65b302244bb5f33493d1ec985c7e3 Mon Sep 17 00:00:00 2001 From: Chris van de Steeg Date: Thu, 22 Dec 2022 18:25:08 +0100 Subject: [PATCH] Don't use cookies on the proxy, just pass through the cookie header (#1494) Co-authored-by: chris van de steeg --- src/Microsoft.Tye.Hosting/HttpProxyService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.Tye.Hosting/HttpProxyService.cs b/src/Microsoft.Tye.Hosting/HttpProxyService.cs index 794f338b..9d9b57e7 100644 --- a/src/Microsoft.Tye.Hosting/HttpProxyService.cs +++ b/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)