I own a domain name and am trying to map it to an Azure Web App that I successfully created.
I created an A record, C record, and Txt (as required by Azure) on Godaddy and configured Custom Domains in Azure (as pictured below). The message I'm getting back now is:
The resource you are looking for has been removed, had its name
changed, or is temporarily unavailable.
Any suggestions?
By looking in https://www.digwebinterface.com/
https://www.digwebinterface.com/?hostnames=dnnappserver.scm.azurewebsites.net%0D%0Asmarttapp.com%0D%0Awww.smarttapp.com&type=&ns=resolver&useresolver=8.8.4.4&nameservers=
Everything seems perfect and even mapping is correct. Even site are working by custom domain :)
Related
I've tried following this:
https://www.youtube.com/watch?v=C6V_mBo-gnE
But the setup has changed, because you need some more properties now:
see more here: https://www.poppastring.com/blog/azure-lets-encrypt-dashboardconnectionstring-field-is-required
The property names does not fit the names in Azure either, so more confusion for me.
Is it possible to just do this from the certify client? I managed to do this for Godaddy, but the DNS Update Method "Azure DNS API" is also confusing..
Sorry I can only find old guides for this..
Both of these should be set to your Azure Storage Account connection string, e.g. DefaultEndpointsProtocol=https;AccountName=[myaccount];AccountKey=[mykey];
Please see Scott's post here for complete instructions on using the Let's encrypt extension with Azure Web Apps.:
https://www.hanselman.com/blog/securing-an-azure-app-service-website-under-ssl-in-minutes-with-lets-encrypt
I have a working azure web app, and ran into some issues while creating a new slot for it, the custom domain that is set for the web app follows the pattern:
appname-projectname-webapp-win-ne.azurewebsites.net
But when I created a slot the custom domain for it was created as:
appname-projectname-webapp-win--slotname.azurewebsites.net
Missing the ne on the domain, so my questions are:
Is there any known reason to why that part would be removed?
Is there a way to change the domain for the slot?
It's being truncated to fit in the allowable length of Azure Web app names (2-59 alphanumerics and hyphens).
See https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-name-rules#microsoftweb for details.
I am trying to use Azure Traffic Manager (GTM) to geographically distribute load to function apps in each region.
I have tried adding an 'app service endpoint' and an 'external endpoint' (including adding the GTM name as a custom CNAME to the function app), but both result in "Error 404 - Web app not found.". The custom CNAME also never adds correctly.
According to the last comment on this post, the ability to do this should now be supported:
Setting up a custom domain with an Azure Function app
I am unable to comment back on the post as I am a new user.
I have tried adding an 'app service endpoint' and an 'external endpoint' (including adding the GTM name as a custom CNAME to the function app)
Azure Traffic Manager is only eligible for use with App Services at the 'Standard' level or above as mentioned here. If your function isn't host in an app plan at the 'Standard' level or above, Azure Traffic Manager will not work.
If you are not using 'Standard' or higher level app plan, Azure Functions Proxies would be a workaround for you. Please check following thread which discuss the similar problem.
Azure Functions Traffic Manager
Here is the quick reference from the answer provided by Dakota Kincer.
So the answer I arrived to after Traffic manager didntsupport Azure functions was to overall build 3 Azure functions. I built an East and a West that has my azure function code on it. Then I built a main Azure Function that has 0 code. It only has Azure proxies on it that route to my 2 other Azure Functions. The route is controlled by a variable in the proxy string that is help in the main API app settings. Using %myvariable% you can set part of the url. When I need to publish I switch the variable to the secondary URL location. Update the Primary and then switch the URL to its original primary location. This will have to work for now till traffic manager is integrated into functions or a better solution arises.
I am unable to comment back on the post as I am a new user.
You could modify your post if you want to provide more information.
Traffic Manager supports Azure functions monitoring. You can enable this by going to TM settings -> endpoints -> add endpoint -> choose Azure endpoint type -> App Service for Target resource type -> under Target Resource choose Function app which you want to monitor.
Most likely you want to be able to access function apps under specific domain domain, for example my-domain.com. For that under Custom Header Settings specify host:my-domain.com. You'll need to setup custom domain in function apps configuration too.
I have an Azure Function app running on dynamic pricing and am trying to set up a custom domain.
I have added and verified the domain and setup the CNAME record accordingly. The custom domain shows up correctly as the "URL" when I view the App Service settings in the Azure portal. If I try to use this domain, however (to access an HTTP trigger function), I am returned with "Error 404 - Web app not found."
When I look at the Function URL in the portal, it still shows the x.azurewebsites.net domain, not the custom domain I have added. Is there anything additional I need to do to get Functions working with a custom domain?
Copying from my answer on MSDN forum:
Indeed, custom domains are not yet supported for Dynamic Function plans. This support will come a bit later (no clear ETA to share at this point).
Thanks to #David Ebbo I figured out how to do this for a Function App running in a consumption plan (e.g. Y1). Here is the MSFT docs article:
https://learn.microsoft.com/en-us/azure/app-service/scripts/cli-configure-custom-domain
It seems that it cannot currently be done via the Azure Portal GUI and instead you must use Azure CLI to run the commands. It's easy to do directly from that article page using the "Try It" link to the embedded azCLI.
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
This error comes on a newly deployed website on azure.
http://newdemo1.azurewebsites.net/Calculator
Works for me when I browse to http://newdemo1.azurewebsites.net/Calculator
Where exactly are you seeing this error? Have you made changes since logging this question ?