Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Last active January 19, 2023 15:29
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/ff63abc860f2d34b530d1e08fa4f0aad to your computer and use it in GitHub Desktop.
Save lgolubyev/ff63abc860f2d34b530d1e08fa4f0aad to your computer and use it in GitHub Desktop.
public void Configure (IApplicationBuilder app, IHostingEnvironment env)
{
app.Use(async (context, next) =>
{
context.Response.Headers.Add("Strict-Transport-Security",
"max-age=31536000;includeSubDomains;preload");
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment