nginx-reverse-proxy-proxy-cache-inside-if-block-possible
sosogh at 126.com
sosogh at 126.com
Fri Jul 19 01:48:09 UTC 2013
Hi
I am running a BBS server(nginx).
And now I want to setup a cache server (using nginx)in front of the BBS server to cache the pic .
The URL for the pic is something like this:
http://www.mysite.com/forum.php?mod=attachment&aid=MjIwODgyfDhiNWNiNzE4fDEzNzQxMTc1MzB8OTgyNzR8OTgwNw%3D%3D&noupdate=yes
It is not as usual as something like this --- http://www.mysite.com/img/xxxx.jpg
Following this page:
http://serverfault.com/questions/389571/nginx-reverse-proxy-proxy-cache-inside-if-block-possible
The cache config on the cache server is :(nginx version: nginx/1.1.19)
proxy_temp_path /nginx-cache/tmp 1 2;
proxy_cache_path /nginx-cache/cache1 levels=1:2 keys_zone=cache1:100m inactive=1d max_size=15g;
map $arg_mod $skip_cache {
default 1;
attachment 0;
}
log_format format1 '$remote_addr - $remote_user [$time_local] ' '"$request" $status $body_bytes_sent ' '"$http_referer" "$http_user_agent" $upstream_cache_status';
location /forum.php {
proxy_pass http://1.1.1.1; # 1.1.1.1 is the real ip of BBS server.
proxy_cache cache1;
proxy_cache_key $host$uri$is_args$args;
proxy_cache_valid 720m;
expires 3d;
proxy_cache_bypass $skip_cache;
proxy_no_cache $skip_cache;
}
When I access http://www.mysite.com/forum.php?mod=attachment&aid=MjIwODgyfDhiNWNiNzE4fDEzNzQxMTc1MzB8OTgyNzR8OTgwNw%3D%3D&noupdate=yes
on my IE.
I see the following log on cache server:
client IP - - [18/Jul/2013:14:21:37 +0400] "GET /forum.php?mod=attachment&aid=MjIwODgyfDhiNWNiNzE4fDEzNzQxMTc1MzB8OTgyNzR8OTgwNw%3D%3D&noupdate=yes HTTP/1.1" 200 4194 "http://www.mysite.com/thread-9971-1-1.html" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/6.0;; .)" MISS
And at that moment,the pic did not shown on my IE.
My questions are:
What does "MISS" excatly mean?
Does it mean that cache server does not get the pic from BBS server ?
If so , why?
or are there any other ways to setup nginx cache for my situation?
And hint is appreciated.
Thank you !
sosogh at 126.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20130719/67c0f5b7/attachment.html>
More information about the nginx
mailing list