On 10 December 2015 at 15:22, Gitted <[email protected]> wrote: > Do you get a static ip address for your GAE application or is it a dynamic > IP because of load balancing? >
For naked domains you should be given static IP addresses (because cant use CNAMES for most) For subdomains you may be given a CNAME. > > I'm not sure why I have to set anything up in the console, is should be > all handled by my application code no? > The frontend 'load-balancers' need to know the domain -> app-id mapping. They need to know which domain(s) should be handled by your app. You dont get a unique ids just for your domain (perhaps unless you have VIP SSL- but will probably still to add mappings. The VIP is just for SSL Certificate selection. ) > > e.g. I get a request, lookup the domain in the database and then I know > which customerId it is. > Yes, your app may well need to do that too. > > On Monday, May 12, 2014 at 6:22:26 PM UTC-4, barryhunter wrote: >> >> >> >> >> On 12 May 2014 23:13, Gitted <[email protected]> wrote: >> >>> >>> If my application is hosted on appengine, will it allow me to create the >>> following: >>> >>> 1. Each customer will have their own subdomain like: >>> >>> customer1.example.com >>> >> >> Can set this up, in the new cloud console >> >> http://stackoverflow.com/questions/22993969/how-do-i-use-a-naked-apex-domain-with-app-engine >> (thats talking about for naked domains, but the same procedure should wor >> for any domain - even its technically a subdomain) >> >> Not sure if can setup a wild-card mapping, or will have to do it for each >> individual subdomain. >> >> ... you will first have to validate example.com, but the page should >> walk you though it. >> >> >> >>> >>> >>> 2. Each customer will point their own custom domain name (DNS A-Record I >>> believe) to my app-engine-app: >>> >>> www.custom-domain1.com => app-engine app >>> >> >> This can again be done via the same process as above. You will need to >> work with the owner to verify the domain so you can use it. >> >> while it can sort of work by adding a A record, it would be better done >> as a CNAME record, again the cloud console page will give you the settings. >> >> >> >> >> >> >>> >>> >>> Is this possible currently? >>> >>> >>> Thanks! >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Google App Engine" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> To post to this group, send email to [email protected]. >>> Visit this group at http://groups.google.com/group/google-appengine. >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/0377a95d-4d0f-4677-a9b7-91c602032e83%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/0377a95d-4d0f-4677-a9b7-91c602032e83%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CAJCAUuJcymnuwmsjs4DTJLAbh%3DHVncMLQa9zU11G_fEAKx%2B4PQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
