Home » Categories » Multiple Categories |
How to solve the Let’s Encrypt SSL on ASP.NET Core |
Article Number: 314 | Rating: 4/5 from 1 votes | Last Updated: Mon, Jul 17, 2017 at 7:07 AM
|
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
![]()
There are no attachments for this article.
|
How To Solve Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 31686 times since Mon, Apr 1, 2013
Sample Code to Send email using ASP.NET 2
Viewed 9610 times since Tue, May 1, 2012
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 10924 times since Tue, Sep 11, 2012
How do I redirect a subdomain to a subdirectory?
Viewed 3904 times since Tue, May 1, 2012
How can I enable ASP.NET 3.5 on your Control Panel?
Viewed 3780 times since Wed, May 2, 2012
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 16983 times since Wed, Feb 17, 2016
Do you support ASP.NET 5?
Viewed 9947 times since Wed, Feb 17, 2016
I am unable to renew my Let’s Encrypt SSL
Viewed 2317 times since Thu, Aug 23, 2018
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3491 times since Thu, May 3, 2012
My website session times out earlier than expected. Why?
Viewed 4827 times since Tue, May 1, 2012
|