Skip to content

(Archived prototype) ASP.NET Core integration for free HTTPs certificates from https://letsencrypt.org

License

Notifications You must be signed in to change notification settings

lulzzz/LetsEncrypt

 
 

Repository files navigation

ASP.NET Core + Let's Encrypt

Oct 2018: Marking this project as "archived" on GitHub because I ran out of personal time to work on this and didn't get it up to a good enough quality to publish this. If you're interesting in continuing this project, please reach out to me: https://twitter.com/natemcmaster.

The goal of this project is to make setting up HTTPS made easy.

Let's Encrypt is a free, automated, and open Certificate Authority. This project provides API for ASP.NET Core projects to use Let's Encrypt.

When configured correctly, this API will automatically contact the https://letsencrypt.org CA and generate an TLS/SSL certificate. It then automatically configures Kestrel to use this certificate for all HTTPs traffic.

Usage

The primary API usage is to call IWebHostBuilder.UseLetsEncrypt and set a few required options.

public class Program
{
    public static void Main(string[] args)
    {
        CreateWebHostBuilder(args).Build().Run();
    }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
            .UseLetsEncrypt(o =>
            {
                o.HostNames = new[] { "example.com" };
                o.AcceptTermsOfService = true;
                o.EmailAddress = "admin@example.com";
            })
            .UseStartup<Startup>();
}

Testing in development

See the developer docs for details on how to test Let's Encrypt in a non-production environment.

About

(Archived prototype) ASP.NET Core integration for free HTTPs certificates from https://letsencrypt.org

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 96.5%
  • PowerShell 3.5%