how can I (dynamically) update a ip address for server whose ip changes and cannot be refered to by dns/dyndns?
For example:
ProxyPass /myapp/ myapp.domain.com
/etc/hosts:
254.153.12.2. myapp.domain.com
Always if /myapp/ is called from outside, remapping should take place to myapp.domain.com. But this is not a domain exposed to the outside. It is only used internally on the server through the hosts file. Inside the hosts, the real ip can be found.
Now I'm looking for a way to either: a) update the ip in hosts through a web interface b) any other approach that would work beside the hosts file
Any ideas of you pros?