I am using apache24 as a proxy (amongst other stuff) using:
This works very well, except dynamic.domain.name is used for a domestic machine, is dynamic and the IP address changes once or twice a day.
When the IP changes, then apache gives a 503 error when connecting to public.domain.name.
I can clear this by
For the time being, I can do this with a
Is there anything better? Is there anything within apache that will recognise when dynamic.domain.name changes?
Code:
<VirtualHost public.domain.name xx.xx.xx.xx:80>
ProxyPass / http://dynamic.domain.name:8800/
ProxyPassReverse / http://dynamic.domain.name:8800/
</VirtualHost>
This works very well, except dynamic.domain.name is used for a domestic machine, is dynamic and the IP address changes once or twice a day.
When the IP changes, then apache gives a 503 error when connecting to public.domain.name.
I can clear this by
service apache24 restart/ reload/ graceful, but I want this to be automated.For the time being, I can do this with a
crontab that drills dynamic.domain.name and if it changes then do the service apache24 graceful, but it is not an elegant solution.Is there anything better? Is there anything within apache that will recognise when dynamic.domain.name changes?