Developers who host ASP.NET Core applications directly on Kestrel without intermediate proxies or cloud balancers will need to adjust their approach to automatic HTTPS certificates starting in 2026. The decision follows the archival of a popular open source library that previously simplified certificate management for such deployments.
Kestrel serves as the default web server in ASP.NET Core and supports direct exposure to the internet. Many teams previously relied on the archived library to obtain and renew TLS certificates automatically from public authorities. With that option no longer maintained, engineers must evaluate built-in platform features or alternative tools to maintain secure connections.
Microsoft has continued to enhance native support for certificate provisioning within the framework. Recent updates include improved integration with certificate stores and command line utilities that can handle renewal tasks. Teams are encouraged to review documentation on these capabilities to determine whether they meet production requirements without additional dependencies.
Security best practices remain unchanged despite the tooling shift. Applications should continue to enforce HTTPS redirects, use strong cipher suites, and monitor certificate expiration dates closely. Organizations running multiple instances may benefit from centralized management solutions that coordinate renewals across servers.
Community discussions highlight several open source projects that offer similar functionality. Some focus on cross platform compatibility while others integrate tightly with container orchestration systems. Selection criteria often include ease of configuration, support for wildcard certificates, and compatibility with existing deployment pipelines.
Testing remains essential before any migration. Developers should verify that new certificate handling code functions correctly under load and that fallback mechanisms exist in case of renewal failures. Logging and alerting configurations can help detect issues early and reduce downtime risks.
The broader ecosystem continues to evolve with contributions from both commercial vendors and independent maintainers. Future framework releases may introduce further simplifications for direct Kestrel hosting scenarios. Staying informed through official release notes and security advisories will assist teams in planning upgrades.
Enterprises with strict compliance needs should document their chosen certificate strategy and conduct periodic audits. This ensures alignment with internal policies and external regulations governing data protection. Collaboration between development and operations groups can streamline the transition process.
Overall the change represents a natural progression in tooling rather than a fundamental limitation. By leveraging current platform features and evaluating supplementary utilities where necessary, teams can maintain secure and reliable web services on Kestrel into the coming years.


