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)
|
a.Connect(connectionString)
|
||||||
.ConfigureKeyVault(kv => kv.SetCredential(new DefaultAzureCredential()));
|
.ConfigureKeyVault(kv => kv.SetCredential(new EnvironmentCredential()));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -68,7 +68,6 @@ builder.Services.Configure<OpenIdConnectOptions>(
|
||||||
|
|
||||||
builder.Services.AddTransient<IContactService, ContactService>();
|
builder.Services.AddTransient<IContactService, ContactService>();
|
||||||
builder.Services.AddOptions<MailSettings>().BindConfiguration("Mail").ValidateDataAnnotations();
|
builder.Services.AddOptions<MailSettings>().BindConfiguration("Mail").ValidateDataAnnotations();
|
||||||
|
|
||||||
builder.Services.AddHttpLogging(
|
builder.Services.AddHttpLogging(
|
||||||
o =>
|
o =>
|
||||||
{
|
{
|
||||||
|
@ -86,8 +85,6 @@ if (app.Environment.IsDevelopment())
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
app.UseExceptionHandler("/Error", true);
|
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();
|
app.UseHttpLogging();
|
||||||
|
|
Loading…
Reference in a new issue