1

I have Ape installed in /APE_Server. I'm configuring APE and the tutorial says:

  1. Create a subdomain pointing to the server where APE is installed.
  2. Create a Catch-All CNAME redirecting all requests from *.ape.yourdomain.com to ape.yourdomain.com

So basically I must create a subdomain that points to the root and a wildcard DNS?

I can do the first. For the second, I click ADD RECORD, select CNAME and it says:

Enter an Alias Name: 
Points to Host Name:

I tried to enter simply: *.ape and ape but it doesn't work. How do I do it?

Chris S
  • 78,455

3 Answers3

1

An earlier question asked whether a wildcard CNAME record was a good idea or not. Answer mentioned that GoDaddy didn't support it even though it is technically fine.

I had the same issue. You can achieve what you need using an A record with * in the host field, and your server's IP address in the Points to Field. You can also set the host field of an A record to *.somesubdomain, if you only want wild-card subdomains of yet another subdomain.

dunxd
  • 9,874
0

Try a '@' and/or try an Arecord.

wrmine
  • 367
0

point *.ape to ape (CNAME) and ape to 173.201.8.249 (A record)

Scypi
  • 160