Configure a custom domain using the Azure Function app

I have an Azure Function application running on dynamic pricing and am trying to set up my own domain.

I added and verified the domain and set the CNAME record. The user domain displays correctly as a "URL" when I view App Service settings in the Azure portal. However, if I try to use this domain (to access the HTTP trigger function), I return with "Error 404 - Web Application Not Found".

When I look at the URL of the function in the portal, it still shows the x.azurewebsites.net domain, not the user domain that I added. Is there anything extra I need to do to get the functions that work with the custom domain?

+8
azure azure-web-sites azure-functions
source share
1 answer

Copy from my answer on the MSDN forum :

Indeed, custom domains are not yet supported for dynamic function plans. This support will come a bit later (there is no clear ETA to share at this point).

+8
source share

All Articles