3

One of the biggest issue I have faced with GAE cloud offering from Google is that it cannot handle naked domains.

It can handle subdomains www however not naked domains. This is a BIG problem, in that your app will not be able to handle PATH or Subdirectory from client request as it is stripped off during a DNS forward to a www subdomain for example.

So my question is, can Openshift handle naked domains? In that, a PATH or Subdirectory from client request would not be lost in translation.

quarks
  • 33,478
  • 73
  • 290
  • 513

2 Answers2

2

From what I remember DNS A-Records require a static IP address and Openshift online currently does not have the ability to assign a static IP to an app.

niharvey
  • 2,807
  • 2
  • 15
  • 24
1

The way I did it was to add DNS record

Hostname: *
Type: CNAME
Value: {my_web}.rhcloud.com

(did it in my domain console from iwantmyname)