Hi Guys,<br><br>I wanted to know, if I can use nginx caching techniques in my handler.<br>There is no backend server and I cannot use proxy_pass.<br><br>I wanted to store contents from some other library. For example:<br><br>
location /cdn {<br>                 myhandler;<br>                     proxy_cache my-cache;<br>                     proxy_cache_valid  200 302  60m;<br>                     proxy_cache_valid  404      1m; <br>        }<br>
<br>I think this will not work.<br><br>Can anyone help me how I can achieve caching in my handler.<br><br>Thanks,<br>Raul<br>