TlsCertificateLoader 1.1.3
See the version list below for details.
dotnet add package TlsCertificateLoader --version 1.1.3
NuGet\Install-Package TlsCertificateLoader -Version 1.1.3
<PackageReference Include="TlsCertificateLoader" Version="1.1.3" />
paket add TlsCertificateLoader --version 1.1.3
#r "nuget: TlsCertificateLoader, 1.1.3"
// Install TlsCertificateLoader as a Cake Addin #addin nuget:?package=TlsCertificateLoader&version=1.1.3 // Install TlsCertificateLoader as a Cake Tool #tool nuget:?package=TlsCertificateLoader&version=1.1.3
TlsCertificateLoader
Allows loading of TLS (HTTPS) certificates for .NET 6.0 Kestrel web applications, allowing for refreshing of certificates as well as compatibility with HTTP/3. Fully compatible with certificates obtained by Certbot (see sample project).
To use:
TlsCertificateLoader.TlsCertificateLoader tlsCertificateLoader = new(fullChainPemFilePath, privateKeyPemFilePath);
options.ListenAnyIp(433, o =>
{
o.SetTlsHandshakeCallbackOptions(tlsCertificateLoader);
o.SetHttpsConnectionAdapterOptions(tlsCertificateLoader);
o.Protocols = HttpProtocols.Http1AndHttp2AndHttp3;
});
And to refresh (eg either on a Timer or watching a directory via PhysicalFileProvider):
tlsCertificateLoader.RefreshDefaultCertificates();
You may also add additional certificate collection for other hostnames (for example if you want to set up mydomain.tld as your default certificate and www.mydomain.tld as your alternate one):
tlsCertificateLoader.AddAdditionalCertificates("www.mydomain.tld", fullChainWwwPemFilePath, privateKeyWwwPemFilePath);
And to refresh additional certificate collections (eg either on a Timer or watching a directory via PhysicalFileProvider):
tlsCertificateLoader.RefreshAdditionalCertificates("www.mydomain.tld");
A sample project using Certbot is available.
Credits
David Fowler for this idea.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
2.3.1 | 157 | 9/21/2024 | |
2.2.10 | 692 | 12/5/2023 | |
2.2.9 | 1,007 | 2/13/2023 | |
2.2.8 | 412 | 1/29/2023 | |
2.2.5 | 491 | 12/16/2022 | |
2.2.4 | 354 | 12/13/2022 | |
2.2.0 | 324 | 12/13/2022 | |
2.1.2 | 352 | 12/12/2022 | |
2.1.1 | 478 | 11/19/2022 | |
2.0.8 | 477 | 9/17/2022 | |
2.0.7 | 487 | 6/29/2022 | |
2.0.6 | 510 | 3/13/2022 | |
2.0.5 | 448 | 3/13/2022 | |
2.0.3 | 447 | 3/12/2022 | |
2.0.2 | 442 | 3/11/2022 | |
2.0.1 | 354 | 11/27/2021 | |
1.1.7 | 332 | 11/27/2021 | |
1.1.4 | 754 | 11/21/2021 | |
1.1.3 | 398 | 11/14/2021 | |
1.1.2 | 433 | 11/14/2021 | |
1.1.1 | 329 | 11/13/2021 | |
1.1.0 | 339 | 11/12/2021 | |
1.0.5 | 323 | 11/10/2021 | |
1.0.4 | 333 | 11/9/2021 | |
1.0.3 | 387 | 11/9/2021 | |
1.0.2 | 473 | 11/7/2021 | |
1.0.0 | 494 | 11/6/2021 |
Updated logo.