Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Ravi Silva 1 post 71 karma points
    Dec 06, 2017 @ 23:21
    Ravi Silva
    0

    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.

    <system.webServer>
        ...
        <staticContent>
            <remove fileExtension="." />
            <mimeMap fileExtension="." mimeType="text/plain" />
            ...
        </staticContent>
        ...
    </system.webServer>
    ...
    

Please Sign in or register to post replies

Write your reply to:

Draft