Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
After configured the Let’s Encrypt in to Azure Webapp, SSL certificate request fail with “Lets Encrypt ACME server was probably unable to reach”
The problem is that Umbraco is takeover that path “~/.well-known/acme-challenge/…” and trying to route you to a document and failing to find one.
Fix: add new entries to the web.config file.
<system.webServer> ... <staticContent> <remove fileExtension="." /> <mimeMap fileExtension="." mimeType="text/plain" /> ... </staticContent> ... </system.webServer> ...
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Let’s Encrypt with Azure PaaS + Umbraco CMS
After configured the Let’s Encrypt in to Azure Webapp, SSL certificate request fail with “Lets Encrypt ACME server was probably unable to reach”
The problem is that Umbraco is takeover that path “~/.well-known/acme-challenge/…” and trying to route you to a document and failing to find one.
Fix: add new entries to the web.config file.
is working on a reply...