mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
Add IdentityServer license (#3552)
This commit is contained in:
parent
ab7842014a
commit
52cb253c9a
@ -48,6 +48,7 @@ public static class ServiceCollectionExtensions
|
|||||||
var identityServerBuilder = services
|
var identityServerBuilder = services
|
||||||
.AddIdentityServer(options =>
|
.AddIdentityServer(options =>
|
||||||
{
|
{
|
||||||
|
options.LicenseKey = globalSettings.IdentityServer.LicenseKey;
|
||||||
options.IssuerUri = $"{issuerUri.Scheme}://{issuerUri.Host}";
|
options.IssuerUri = $"{issuerUri.Scheme}://{issuerUri.Host}";
|
||||||
if (env.IsDevelopment())
|
if (env.IsDevelopment())
|
||||||
{
|
{
|
||||||
|
@ -327,6 +327,7 @@ public class GlobalSettings : IGlobalSettings
|
|||||||
public string CertificateThumbprint { get; set; }
|
public string CertificateThumbprint { get; set; }
|
||||||
public string CertificatePassword { get; set; }
|
public string CertificatePassword { get; set; }
|
||||||
public string RedisConnectionString { get; set; }
|
public string RedisConnectionString { get; set; }
|
||||||
|
public string LicenseKey { get; set; } = "eyJhbGciOiJQUzI1NiIsImtpZCI6IklkZW50aXR5U2VydmVyTGljZW5zZWtleS83Y2VhZGJiNzgxMzA0NjllODgwNjg5MTAyNTQxNGYxNiIsInR5cCI6ImxpY2Vuc2Urand0In0.eyJpc3MiOiJodHRwczovL2R1ZW5kZXNvZnR3YXJlLmNvbSIsImF1ZCI6IklkZW50aXR5U2VydmVyIiwiaWF0IjoxNzAxODIwODAwLCJleHAiOjE3MzM0NDMyMDAsImNvbXBhbnlfbmFtZSI6IkJpdHdhcmRlbiBJbmMuIiwiY29udGFjdF9pbmZvIjoiY29udGFjdEBkdWVuZGVzb2Z0d2FyZS5jb20iLCJlZGl0aW9uIjoiU3RhcnRlciIsImlkIjoiNDMxOSIsImZlYXR1cmUiOlsiaXN2IiwidW5saW1pdGVkX2NsaWVudHMiXSwicHJvZHVjdCI6IkJpdHdhcmRlbiJ9.iLA771PffgIh0ClRS8OWHbg2cAgjhgOkUjRRkLNr9dpQXhYZkVKdpUn-Gw9T7grsGcAx0f4p-TQmtcCpbN9EJCF5jlF0-NfsRTp_gmCgQ5eXyiE4DzJp2OCrz_3STf07N1dILwhD3nk9rzcA6SRQ4_kja8wAMHKnD5LisW98r5DfRDBecRs16KS5HUhg99DRMR5fd9ntfydVMTC_E23eEOHVLsR4YhiSXaEINPjFDG1czyOBClJItDW8g9X8qlClZegr630UjnKKg06A4usoL25VFHHn8Ew3v-_-XdlWoWsIpMMVvacwZT8rwkxjIesFNsXG6yzuROIhaxAvB1297A";
|
||||||
}
|
}
|
||||||
|
|
||||||
public class DataProtectionSettings
|
public class DataProtectionSettings
|
||||||
|
@ -23,6 +23,7 @@ public static class ServiceCollectionExtensions
|
|||||||
var identityServerBuilder = services
|
var identityServerBuilder = services
|
||||||
.AddIdentityServer(options =>
|
.AddIdentityServer(options =>
|
||||||
{
|
{
|
||||||
|
options.LicenseKey = globalSettings.IdentityServer.LicenseKey;
|
||||||
options.Endpoints.EnableIntrospectionEndpoint = false;
|
options.Endpoints.EnableIntrospectionEndpoint = false;
|
||||||
options.Endpoints.EnableEndSessionEndpoint = false;
|
options.Endpoints.EnableEndSessionEndpoint = false;
|
||||||
options.Endpoints.EnableUserInfoEndpoint = false;
|
options.Endpoints.EnableUserInfoEndpoint = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user