<p>Hello</p>
<p>Am 24.05.2012 16:26 schrieb "21andy" <<a href="mailto:nginx-forum@nginx.us">nginx-forum@nginx.us</a>>:<br>
><br>
> 2 question:<br>
> 1. i want to put the pic,css,js etc. files on the frontend server, but<br>
> with below config, i put a tar file to /var/www/<a href="http://a.com/test.tar">a.com/test.tar</a> and<br>
> visite <a href="http://a.com/test.tar">http://a.com/test.tar</a> it return a 404 herder. how can i fix it?<br>
></p>
<p>Your static file regex doesn't include .tar file.</p>
<p>> 2. i want control the proxy cache for different cache time with the<br>
> different request uri, could you give me the right way to config it ?<br>
> thank you very much.<br>
><br>
> my nginx.conf<br>
><br>
> server {<br>
>    listen 80;<br>
>    root  /var/www/<a href="http://a.com">a.com</a>;<br>
>    server_name <a href="http://a.com">a.com</a>;<br>
>    index index.html index.htm index.php;<br>
><br>
>    location ^~ /admin/ {<br>
>        proxy_pass <a href="http://backend">http://backend</a>;<br>
>    }<br>
><br>
>    location ~* ^/post/ {<br>
>        proxy_cache             main;<br>
>        proxy_cache_valid       200 301 302 60d;<br>
>        proxy_cache_valid       any 30d;<br>
>        proxy_pass              <a href="http://backend">http://backend</a>;<br>
>    }<br>
><br>
>    location ~* ^/(list|archive)/ {<br>
>        proxy_cache             main;<br>
>        proxy_cache_valid       200 301 302 60d;<br>
>        proxy_cache_valid       any 1d;<br>
>        proxy_pass              <a href="http://backend">http://backend</a>;<br>
>    }<br>
><br>
>    location ~ ^.*\.php$ {<br>
>        proxy_pass <a href="http://backend">http://backend</a>;<br>
>    }<br>
><br>
>    location / {<br>
>        proxy_cache             main;<br>
>        proxy_cache_valid       any 10m;<br>
>        proxy_pass <a href="http://backend">http://backend</a>;<br>
>    }<br>
><br>
>    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|ico)$ {<br>
>        expires      30d;<br>
>    }<br>
><br>
> }<br>
><br>
> Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,226787,226787#msg-226787">http://forum.nginx.org/read.php?2,226787,226787#msg-226787</a><br>
><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">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</p>