Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created February 17, 2018 14:38
Show Gist options
  • Select an option

  • Save PradeepLoganathan/12d24937adff27e2f02532cbb7bf948f to your computer and use it in GitHub Desktop.

Select an option

Save PradeepLoganathan/12d24937adff27e2f02532cbb7bf948f to your computer and use it in GitHub Desktop.
CORS configuration
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddCors(options =>
{
options.AddPolicy("AllowAll",
builder => builder.AllowAnyOrigin()
.AllowAnyHeader()
.AllowAnyMethod());
});
services.AddMvc();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseCors("AllowAll");
app.UseMvc();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment