Enable X-Forwarded-* headers using env var instead of code
This commit is contained in:
parent
6abff69bcb
commit
4c62cded56
@ -30,6 +30,7 @@ COPY --from=build2 /src/Groceries/config.ini /config/
|
|||||||
|
|
||||||
RUN apk add --no-cache icu-libs tzdata
|
RUN apk add --no-cache icu-libs tzdata
|
||||||
|
|
||||||
|
ENV ASPNETCORE_FORWARDEDHEADERS_ENABLED=true
|
||||||
ENV ASPNETCORE_HTTP_PORTS=80
|
ENV ASPNETCORE_HTTP_PORTS=80
|
||||||
ENV DOTNET_ENABLEDIAGNOSTICS=0
|
ENV DOTNET_ENABLEDIAGNOSTICS=0
|
||||||
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false
|
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
using DbUp;
|
using DbUp;
|
||||||
using Groceries.Data;
|
using Groceries.Data;
|
||||||
using Microsoft.AspNetCore.DataProtection;
|
using Microsoft.AspNetCore.DataProtection;
|
||||||
using Microsoft.AspNetCore.HttpOverrides;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
@ -29,13 +28,6 @@ if (!dbUpgradeResult.Successful)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
builder.Services.Configure<ForwardedHeadersOptions>(options =>
|
|
||||||
{
|
|
||||||
options.ForwardedHeaders = ForwardedHeaders.All;
|
|
||||||
options.KnownNetworks.Clear();
|
|
||||||
options.KnownProxies.Clear();
|
|
||||||
});
|
|
||||||
|
|
||||||
var dataProtection = builder.Services.AddDataProtection();
|
var dataProtection = builder.Services.AddDataProtection();
|
||||||
if (env.IsProduction())
|
if (env.IsProduction())
|
||||||
{
|
{
|
||||||
@ -59,7 +51,6 @@ builder.Services.AddDbContextPool<AppDbContext>(options => options
|
|||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
||||||
app.UseForwardedHeaders();
|
|
||||||
app.UseStaticFiles();
|
app.UseStaticFiles();
|
||||||
app.UseRouting();
|
app.UseRouting();
|
||||||
app.UseSession();
|
app.UseSession();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user