nginx can not cache

weichenqi weichenqi at gmail.com
Mon May 18 10:36:15 MSD 2009


Hi,
   I want to cache static files as gif,jpg and so on .that my config files:

location *~*\.(jgp|gif|png|css|swf|html|htm)$ {
        root /web/html/;
        proxy_store on;
        proxy_set_header Accept-Encoding '';
        proxy_temp_path /web/tmp/;
        proxy_store_access user:rw group:r all:r; 
        if (!-f $request_filename)
        {
        proxy_pass http://localhost:81;
}        
}
        location / {
               proxy_redirect off;
               proxy_set_header Host $host;
               proxy_set_header X-Real-IP $remote_addr;
               proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
               client_max_body_size 50m;
               client_body_buffer_size 256k;
               proxy_connect_timeout 30;
               proxy_send_timeout 30;
               proxy_read_timeout 60;
               proxy_buffer_size 4k;
               proxy_buffers 4 32k;
               proxy_busy_buffers_size 64k;
               proxy_temp_file_write_size 64k;
               proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
               proxy_max_temp_file_size 128m;
            
               proxy_store off;
          
                   proxy_pass http://test/;
          }
}
}
now,it have problem,inthe proxy_temp_path /web/tmp/
there is no files cache.why?thanks!
2009-05-18 



weichenqi 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://nginx.org/pipermail/nginx/attachments/20090518/b4b5a93a/attachment.html>


More information about the nginx mailing list