From 30e774da389c3e402a5e83d6f8dc72d5dc7a6e8b Mon Sep 17 00:00:00 2001 From: James Chapman Date: Sat, 11 Nov 2023 21:40:25 +0000 Subject: [PATCH] Respect X-Forwarded-* headers --- Groceries/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Groceries/Program.cs b/Groceries/Program.cs index 84a6d82..a799385 100644 --- a/Groceries/Program.cs +++ b/Groceries/Program.cs @@ -3,6 +3,7 @@ using Groceries.Common; using Groceries.Data; using Microsoft.AspNetCore.Authentication.OAuth; using Microsoft.AspNetCore.DataProtection; +using Microsoft.AspNetCore.HttpOverrides; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Mvc.Infrastructure; using Microsoft.AspNetCore.Mvc.Razor; @@ -85,6 +86,7 @@ builder.Services.AddDbContextPool(options => options var app = builder.Build(); +app.UseForwardedHeaders(new() { ForwardedHeaders = ForwardedHeaders.All }); app.UseStaticFiles(); app.UseRouting();