If you access a file via a reverse proxy and the file is not found (returns 404), can apache2/mod_proxy automatically check for the file on another server by doing another reverse proxy?
workflow is like so: 1. request the file on the server doing the reverse proxy 2. server looks for the file on server A 3. file not found on server A, so it checks server B 4. file was found on server B, so it gets returned.
I already know other offerings can do this, but I was curious if mod_proxy can do this?