How i can use custom domain in google app engine? - dns

Hi Google Cloud experts,
I want to use my custom domain www.example.com in App engine custom domain.I purchase domain from GoDaddy.
How can i do it.

App Engine indeed supports the use of custom domains. I would recommend you to take a look at the documentation Adding a custom domain for your application.
On this tutorial, you will find all the information and steps needed for you to use your custom domain with App Engine.
Besides that, you can even use subdomains and wildcards, in case you want to use a range of domains or a list of domains, that you can redirect them to your application.
In addition, I would recommend you to take a look at the documentation Secure your custom domains with SSL, so you can find security information to implement on your application, once you are using your own domain.
Let me know if the information helped you!

Once you have purchased domain through Godaddy, you just need to point your domain to your hosting provider name server.

Related

How to let users connect their custom domains to my next.js app hosting on Google App Engine?

I developed a next.js app where everyone can design his own profile page.
Today, everyone using a unique sub-domain like jake.app-name.com and ben.app-name.com.
I want to give everyone the option to connect his own domain to point to his profile page like jake.com.
I know how to manage it on the server after the domain is pointing to the server.
My question is how can I connect, using code (API) many domains to my google app engine without any limitation in the future? What is required? Google will manage all the SSL certificates automatically? I will have an additional cost?
Thank you.
I haven't looked into this in 2021 but as of last year this was not possible. You have to manually map each unique domain to one of your subdomains.
Regarding SSL certificates, note the following from Google
....If you are using subdomains, there is a limit of 20 managed certificates per week for each base domain. ..

Is it possible to add domain.de to domain.com in Azure App Service Domains

In Azure App Service Domains is possible to buy a domain.
The following top-level domains are supported by App Service domains: com, net, co.uk, org, nl, in, biz, org.uk, and co.in.
What should I do to use www.domain.de instead of www.domain.com in Azure?
I'm aware about the possibility to use URL redirect or rewrite, but I'm looking for a way to handle this in a more elegant and straighforward way.
At the end, I pay for the domain and for the SSL certificate as well!
Unfortunately, at this time App Service Domains do not support .de domain purchasing.
You can however purchase your .de domain from a 3rd party domain provide and then setup your domain on your Azure Web App following these directions.
We welcome you to create a feature request on Azure Feedback. The product group reviews the ideas posted on the site to drive their upcoming features.

Multi-domain Routing and SSL on Node.js

I have a Node.js app that serves http requests. Users can signup, create an account and when they do, I generate a subdomain for them to use. eg username.example.com. This is fairly straight forward to do and can be served over ssl using a single certificate.
I would like to give the option for the user to use their own domain. From Node.js this isn't too difficult either. I can check the hostname and look up the account details from there.
I'm struggling to work out how to generate ssl's for these custom domains though.
Right now, my app runs on Heroku, but I also have a staging build on Google's App Engine, so I don't deal with the web server directly. In fact, I don't even know what it is, it could be Nginx or Apache.
To keep the conversation focused, let's stay I want to stick to app engine. When a user adds their own domain, I store it in the database. How would I auto generate an SSL for this?
I thought of general steps for this, but there is one showstopper which I'm not sure it is possible to workaround. The steps will be:
Map the user's domain to your application and configure the DNS records. You can do that with the gcloud commands: steps and general description outlined in this Mapping Custom Domains docs page (notice that you can switch between Console and GCloud in the boxes). There is also a possibility of doing that within the Cloud Console, however as you've mentioned you're interested in the programmatic approach. If you prefer to configure the custom domain from the API, the same functionality exists in App Engine Admin API with its REST resource for domain mappings.
Possible showstopper (source: Mapping Custom Domains) :
Verify that you are the owner of your domain through Webmaster Central
After that, App Engine provisions a managed certificate and then handles renewing/revoking it. Securing Custom Domains with SSL is still in beta, but it offers the functionality that you need.

Use apex domain and subdomain for different firebase projects

For my personal site, I have a firebase project (using firebase hosting) which is alloted to my apex domain (http://exmaple.com), and I have another firebase project, which I want to allot to a subdomain of the same apex domain (http://subdomain.example.com), but firebase doesn't allow me to do that, any workarounds?
You can now add multiple domains to a single Firebase Hosting site. Domains can either serve site content or redirect to another domain (editable at any time). In addition, you can now use subdomains of the same registered domain on different projects, such as example.com on one project and blog.example.com on another. Visit your hosting admin page to configure them.
"This is currently a limitation of how custom domains work on Firebase Hosting. We're exploring ways to improve and make it possible to reuse the same apex domain across multiple sites, but we don't yet have anything concrete to announce at this time."
- Michael Bleigh

Multi-tenant Azure dynamic wildcard CName

I am trying to create a multitenant Azure website which is a way for people to sign up and get their sub-domains. I have followed the instructions in here (http://www.stratospher.es/blog/post/wildcard-subdomains-in-windows-azure) and manage to get all *.mydomain.com CNAME to mydomain.azurewebsites.net according to (http://www.digwebinterface.com/)
Here is the problem
if I go to tenant1.mydomain.com I'll get the 404 server error. However if I log in to Azure and go to my website Manage custom domains and add the tenant1.mydomain.com then everything would work fine.
The idea behind the wildcard is I can add tenant pragmatically/dynamically. Is there anyway to automated this process or add a wildcard in the azure Manage custom domains. Is there any difference between app cloud service and website?
Thanks for your help
Update
I end up using cloud services instead of websites. You don't need to configure the custom domain names in the control panel anymore. Just simply point cname and your good to go.
Did you check out the use of Amazon Route 53 to configure the domain mapping in Azure, it seems that there are options.
Please refer the following links
Sub domain mapping in windows azure
Add custom Domain to azurewebsite

Resources