This commit is contained in:
parent
1c984859cb
commit
8bcba134f1
1 changed files with 1 additions and 4 deletions
|
@ -45,7 +45,7 @@ if (builder.Environment.IsStaging() || builder.Environment.IsProduction())
|
|||
}
|
||||
|
||||
a.Connect(connectionString)
|
||||
.ConfigureKeyVault(kv => kv.SetCredential(new DefaultAzureCredential()));
|
||||
.ConfigureKeyVault(kv => kv.SetCredential(new EnvironmentCredential()));
|
||||
});
|
||||
}
|
||||
else
|
||||
|
@ -68,7 +68,6 @@ builder.Services.Configure<OpenIdConnectOptions>(
|
|||
|
||||
builder.Services.AddTransient<IContactService, ContactService>();
|
||||
builder.Services.AddOptions<MailSettings>().BindConfiguration("Mail").ValidateDataAnnotations();
|
||||
|
||||
builder.Services.AddHttpLogging(
|
||||
o =>
|
||||
{
|
||||
|
@ -86,8 +85,6 @@ if (app.Environment.IsDevelopment())
|
|||
else
|
||||
{
|
||||
app.UseExceptionHandler("/Error", true);
|
||||
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
||||
app.UseHsts();
|
||||
}
|
||||
|
||||
app.UseHttpLogging();
|
||||
|
|
Loading…
Reference in a new issue