<div dir="ltr"><div>@itpp, thanks for reply. I am working on proxy_cache . My all webservers in local ISP will be proxy servers and all requests regarding flv,mp4,jpeg from asia will be route through the proxy servers and data will be cache in proxy servers. I think, this will help me with caching. I am testing it on local and its working as it should. Following is the edge server config :<br>
<br>proxy_cache_path /data/nginx/cache levels=1:2 keys_zone=static:1000m;<br>proxy_temp_path /tmp;<br><br><br>server {<br>    listen       80;<br>    server_name  <a href="http://edge.com">edge.com</a>;<br>#       proxy_cache one;<br>
        root /var/www/html/test;<br>access_log /var/log/nginx/access.log ;<br>    error_log /var/log/nginx/error.log;<br><br><br><br> location / {<br>        proxy_pass <a href="http://origin.com:80">http://origin.com:80</a>;<br>
        proxy_cache static;<br>        proxy_cache_min_uses 1;<br>            proxy_cache_valid 200 301 302 120m;<br>#            proxy_cache_valid 404 1m;<br><br>   }<br>}<br><br></div>Please let me know if the method is correct.<br>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 27, 2014 at 3:55 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'd call that provisioning, a simple try_files directive can deal with that<br>
while the provisioning service syncs.<br>
<a href="http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files" target="_blank">http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files</a><br>
<br>
Then jump left for cached contents or jump right for non-cached contents.<br>
<br>
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,249997,250385#msg-250385" target="_blank">http://forum.nginx.org/read.php?2,249997,250385#msg-250385</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>