How to overcome root domain CNAME restrictions?

前端 未结 8 769
失恋的感觉
失恋的感觉 2020-12-04 05:23

We are hosting many web applications for our customers. As is obvious they want to use their own domains to refer to those applications, usually they want that any user tha

8条回答
  •  情深已故
    2020-12-04 06:04

    I don't know how they are getting away with it, or what negative side effects their may be, but I'm using Hover.com to host some of my domains, and recently setup the apex of my domain as a CNAME there. Their DNS editing tool did not complain at all, and my domain happily resolves via the CNAME assigned.

    Here is what Dig shows me for this domain (actual domain obfuscated as mydomain.com):

    ; <<>> DiG 9.8.3-P1 <<>> mydomain.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 2056
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;mydomain.com.          IN  A
    
    ;; ANSWER SECTION:
    mydomain.com.       394 IN  CNAME   myapp.parseapp.com.
    myapp.parseapp.com. 300 IN  CNAME   parseapp.com.
    parseapp.com.       60  IN  A   54.243.93.102
    

提交回复
热议问题