Home » Categories » Multiple Categories

How to solve the Let’s Encrypt SSL on ASP.NET Core

Problem: Let's Encrypt SSL fails to work even it has been activated on the Control Panel

Solution
This solution applies to ASP.NET Core application with MVC
The problem is that Let's Encrypt SSL targets a folder .well-know inside the application. As it does not exist on the httpdocs, and that no route is targeting it, MVC will return a 404 error message and then SSL Certificate will not work.

So the trick is to add the following code on the configure method from startup.cs

app.UseStaticFiles(new StaticFileOptions
{
FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), @".well-known")),
RequestPath = new PathString("/.well-known"),
ServeUnknownFileTypes = true // serve extensionless file
});

And you also need to add the folder to the root of the website

As Let's Encrypt SSL is a new feature to the Plesk Control Panel, occasionally, it will not work fine. We still highly recommend our customer to use a paid SSL for higher reliability and security reason

If there is any further issue, please open a support ticket via our Help Desk System

Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 8856 times since Tue, Apr 2, 2013
How do I query MySQL Database in PHP ?
Viewed 3070 times since Tue, May 1, 2012
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 2624 times since Tue, May 1, 2012
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 10247 times since Mon, Apr 30, 2012
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 6162 times since Tue, May 1, 2012
About Azure Key Vault
Viewed 1238 times since Mon, Nov 2, 2020
Sample Code to Send email using ASP.NET 2
Viewed 9189 times since Tue, May 1, 2012