<div dir="ltr"><div><div><div><div>Hello itpp,<br><br></div>           the Local caching server is nothing but a proxy server which will route all traffic from asia to origin server and will cache the requested file in /data/nginx/cache folder. So when the request made again, it'll be served from cache.<br>
<br>>>I'm not seeing where you determine if a file is present on an edge system,<br></div>Edge system will route request for new file to origin server and will cache the resulted file to edge server,so  when the new request for same file will arrive, nginx edge server will serve it from /data/nginx/cache folder. <br>
<br></div>I did experiment on locally and by checking the logs, i think its working . I got hint from following link :<br><br></div><a href="http://nginx.com/resources/admin-guide/caching/">http://nginx.com/resources/admin-guide/caching/</a><br>
<div><div><div><br></div></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 27, 2014 at 6:00 PM, itpp2012 <span dir="ltr"><<a href="mailto:nginx-forum@nginx.us" target="_blank">nginx-forum@nginx.us</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I'm not seeing where you determine if a file is present on an edge system,<br>
the try_files directive allows you to redirect or not (locally present or<br>
not). I don't really see a point for using (proxy)cache, the file is present<br>
or it is not.<br>
<br>
location / {<br>
try_files $uri @getfrom_origin;<br>
}<br>
<br>
location @getfrom_origin {<br>
proxy_pass ......;<br>
}<br>
<br>
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,249997,250393#msg-250393" target="_blank">http://forum.nginx.org/read.php?2,249997,250393#msg-250393</a><br>
<div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</div></div></blockquote></div><br></div>