diff --git a/src/NSeguin.Dev.Web/Program.cs b/src/NSeguin.Dev.Web/Program.cs index 20068c3..41f49a0 100644 --- a/src/NSeguin.Dev.Web/Program.cs +++ b/src/NSeguin.Dev.Web/Program.cs @@ -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( builder.Services.AddTransient(); builder.Services.AddOptions().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();