зеркало из https://github.com/dotnet/diagnostics.git
Add support for CORS (#1377)
This commit is contained in:
Родитель
86bfb79d71
Коммит
a372128bb6
|
@ -0,0 +1,14 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Microsoft.Diagnostics.Monitoring.RestServer
|
||||||
|
{
|
||||||
|
public class CorsConfiguration
|
||||||
|
{
|
||||||
|
public string AllowedOrigins { get; set; }
|
||||||
|
|
||||||
|
public string[] GetOrigins() => AllowedOrigins?.Split(';');
|
||||||
|
}
|
||||||
|
}
|
|
@ -72,6 +72,13 @@ namespace Microsoft.Diagnostics.Monitoring
|
||||||
app.UseHsts();
|
app.UseHsts();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CorsConfiguration corsConfiguration = new CorsConfiguration();
|
||||||
|
Configuration.Bind(nameof(CorsConfiguration), corsConfiguration);
|
||||||
|
if (!string.IsNullOrEmpty(corsConfiguration.AllowedOrigins))
|
||||||
|
{
|
||||||
|
app.UseCors(builder => builder.WithOrigins(corsConfiguration.GetOrigins()).AllowAnyHeader().AllowAnyMethod());
|
||||||
|
}
|
||||||
|
|
||||||
app.UseResponseCompression();
|
app.UseResponseCompression();
|
||||||
app.UseMvc();
|
app.UseMvc();
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче