Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Last active January 12, 2023 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/15bbe56444d32a87d0330b18f7a7ddbc to your computer and use it in GitHub Desktop.
Save lgolubyev/15bbe56444d32a87d0330b18f7a7ddbc to your computer and use it in GitHub Desktop.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.Use(async (context, next) =>
{
context.Response.Header.Add("Content-Security-Policy", "default-src 'self';");
await next();
});
app.UseMvc();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment