Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created February 2, 2020 12:33
Show Gist options
  • Select an option

  • Save PradeepLoganathan/4bfca54eecfc2932e77ed213db5ad7b6 to your computer and use it in GitHub Desktop.

Select an option

Save PradeepLoganathan/4bfca54eecfc2932e77ed213db5ad7b6 to your computer and use it in GitHub Desktop.
confguring kestrel for https
webBuilder.ConfigureKestrel(serverOptions =>
{
serverOptions.ConfigureHttpsDefaults(listenOptions =>
{
// certificate is an X509Certificate2
listenOptions.ServerCertificate = certificate;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment