mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
SetIdentityServerOrigin for all non-dev (#925)
This commit is contained in:
parent
d7e45fe0a3
commit
82b6216e95
@ -87,7 +87,7 @@ namespace Bit.Sso
|
|||||||
|
|
||||||
app.UseSerilog(env, appLifetime, globalSettings);
|
app.UseSerilog(env, appLifetime, globalSettings);
|
||||||
|
|
||||||
if (globalSettings.SelfHosted)
|
if (!env.IsDevelopment())
|
||||||
{
|
{
|
||||||
var uri = new Uri(globalSettings.BaseServiceUri.Sso);
|
var uri = new Uri(globalSettings.BaseServiceUri.Sso);
|
||||||
app.Use(async (ctx, next) =>
|
app.Use(async (ctx, next) =>
|
||||||
@ -95,6 +95,10 @@ namespace Bit.Sso
|
|||||||
ctx.SetIdentityServerOrigin($"{uri.Scheme}://{uri.Host}");
|
ctx.SetIdentityServerOrigin($"{uri.Scheme}://{uri.Host}");
|
||||||
await next();
|
await next();
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (globalSettings.SelfHosted)
|
||||||
|
{
|
||||||
app.UsePathBase("/sso");
|
app.UsePathBase("/sso");
|
||||||
app.UseForwardedHeaders(globalSettings);
|
app.UseForwardedHeaders(globalSettings);
|
||||||
}
|
}
|
||||||
|
@ -144,7 +144,7 @@ namespace Bit.Identity
|
|||||||
|
|
||||||
app.UseSerilog(env, appLifetime, globalSettings);
|
app.UseSerilog(env, appLifetime, globalSettings);
|
||||||
|
|
||||||
if (globalSettings.SelfHosted)
|
if (!env.IsDevelopment())
|
||||||
{
|
{
|
||||||
var uri = new Uri(globalSettings.BaseServiceUri.Identity);
|
var uri = new Uri(globalSettings.BaseServiceUri.Identity);
|
||||||
app.Use(async (ctx, next) =>
|
app.Use(async (ctx, next) =>
|
||||||
@ -152,6 +152,10 @@ namespace Bit.Identity
|
|||||||
ctx.SetIdentityServerOrigin($"{uri.Scheme}://{uri.Host}");
|
ctx.SetIdentityServerOrigin($"{uri.Scheme}://{uri.Host}");
|
||||||
await next();
|
await next();
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (globalSettings.SelfHosted)
|
||||||
|
{
|
||||||
app.UsePathBase("/identity");
|
app.UsePathBase("/identity");
|
||||||
app.UseForwardedHeaders(globalSettings);
|
app.UseForwardedHeaders(globalSettings);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user