Hello,<br><br>I am new to varnish and I end up on this mailing list after several days of google search and a day of reading your documentation. Based on this small experience I get the feeling that varnish might be the tool that I am looking for. However I am not yet sure because I haven't found and example of vcl configuration doing what I want.<br>
<br>Let me give you the context of this request we will soon replace our old cms by a new one : both of them are served by 2 differents web server or on the same web server but on 2 different port : weserver_new_cms:8081 and webserver_old_cms:8082<br>
<br>What I would like to do is to have a single frontend web server called : frontend:8080 that cache and the get the requested page from either weserver_new_cms:8081 or webserver_old_cms:8082 and cache the result.<br><br>
So the journey of the request will look like this :<br><br>Browser request the page :  <b>frontend:8080/foo/bar</b><br>This request reach the frontend:8080, it looks if the page is the cache. If the page is in the cache it serves it from there else it sends the request to<b>  weserver_new_cms:8081</b>. There are 2 cases there the page exists or  not. If the page exists it serves the page to the frontend that puts it in the cache and sends it to the client. If the page does not exist it means that weserver_new_cms:8081 returns 404 the frontend should reverse proxy <b>to webserver_old_cms:8082. </b>There is  again 2 cases there the page exists or it doesn't. If the page exists it
serves the page to the frontend that puts it in the cache and send it to
the client. If the page does not exist it returns a 404 error to the client because the page does not exist in any (new, old) cms.<br><br>It seems to me that <b>vcl_fetch</b> is the right place to hook this logic but so far I have no idea on how to write this. Some help/ guidance would be very appreciated.<br>
<br>Regards,<br>Yann<br>