﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	uname	nginx_version
849	proxy_cache  filder no files,I think it is a bug,because in version 1.0.4 is OK!	Art-Man@…		"
proxy_cache  filder no file,Other works will


config:
##==temp&Cache=======
proxy_temp_path  /var/cache/nginx/proxy_temp;
proxy_cache_path /var/cache/nginx/proxy_cache  levels=1:2   keys_zone=cache_one:200m inactive=1d max_size=1g;





location ~*^/ynedut/.*\.(gif|jpg|jpeg|png|ico|css|js|swf|txt|mp3)$
{
        include cache.conf;
        expires      30d;

 proxy_cache_key $host$uri$is_args$args;
 proxy_set_header Host  $host; 
 proxy_cache cache_one;

        proxy_pass http://ynedut;
        break;
}
location ~*^/ynedut/.*\.(htm|html)$
{
    include cache.conf;
    expires      2m;

 proxy_cache_key $host$uri$is_args$args;
 proxy_set_header Host  $host; 
 proxy_cache cache_one;


    proxy_pass http://ynedut;
        break;
}
location /ynedut/{
proxy_pass http://ynedut;
include proxy.conf;
}



"	defect	closed	minor		documentation	1.9.x	worksforme	proxy_cache	liaodengsong@…	Linux S001 2.6.32-573.el6.x86_64 #1 SMP Thu Jul 23 15:44:03 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux	"nginx version: nginx/1.9.6
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC) 
built with OpenSSL 1.0.1e-fips 11 Feb 2013
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-threads --with-stream --with-stream_ssl_module --with-http_v2_module"
