How to dynamically create sub-domains with different IP than the original domain correctly and efficiently? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T03:00:02Z http://stackoverflow.com/feeds/question/476474 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/476474/how-to-dynamically-create-sub-domains-with-different-ip-than-the-original-domain 1 How to dynamically create sub-domains with different IP than the original domain correctly and efficiently? Henry 2009-01-24T18:47:20Z 2009-01-25T13:48:23Z <p>How to efficiently create subdomains dynamically that are resolved to different IP than the original domain?</p> <p>Most dynamic subdomain creation solutions I've found here would add a *.domain.com A-record to the DNS server (usually using BIND), but that's <strong>not</strong> what I want.</p> <p>Does that mean the zone file needs to be set to always Expire? Wouldn't that tax our DNS server heavily?</p> <p>However, what if the client ISP doesn't go and fetch the new zone file I just dynamically changed? Wouldn't they not able to resolve our new sub-domain entry?</p> <p>Would setting up DDNS in BIND be the logical path for implementing such system? DDNS would allow me dynamically insert A-record without restarting BIND, right?</p> <p>I'm sure there are some way to do this, since most large blogging service that doesn't point all account to the same IP as the blogging engine, are doing something similar to what I need.</p> <p>Thank you!</p> http://stackoverflow.com/questions/476474/how-to-dynamically-create-sub-domains-with-different-ip-than-the-original-domain/476547#476547 2 Answer by Sam_Cogan for How to dynamically create sub-domains with different IP than the original domain correctly and efficiently? Sam_Cogan 2009-01-24T19:43:05Z 2009-01-24T19:43:05Z <p>I would imagine that most services that do this have their wildcard (*.) DNS entry setup for these accounts, and probabley point it to a load balancer, that distributes requests based on host name etc. They then have the non-standard entrys setup as normal A records in DNS.</p> http://stackoverflow.com/questions/476474/how-to-dynamically-create-sub-domains-with-different-ip-than-the-original-domain/477702#477702 2 Answer by Alnitak for How to dynamically create sub-domains with different IP than the original domain correctly and efficiently? Alnitak 2009-01-25T13:48:23Z 2009-01-25T13:48:23Z <p>Yes, you could use dynamic DNS updates to push zone file changes into your zone without having to put them into a text zone file and reloading BIND each time.</p> <p>Many large domain name registries use exactly that technique whenever a domain name is registered.</p> <p>That doesn't mean, though, that it's the right technique for your application. As recommended yesterday to your other question, there's really no reason not to go with the wildcard option.</p> <p>A low-end server running Apache would be more than enough to front-end reverse proxy your first few thousand sites, and better still you don't even need to deploy it until you get enough users to set up your second partitioned cluster.</p>