Re: proxy doesn't cache

2013-05-14 Thread Stefan Xenon
Thanks a lot Maxim. This really solved my problem. :-) Stefan Am 11.05.2013 22:55, schrieb Maxim Dounin: > Hello! > > On Fri, May 10, 2013 at 11:13:42AM +0800, Stefan Xenon wrote: > >> Hi! >> I want to use nginx as a caching proxy in front of an OCSP responder. >> The OCSP requests are transmit

Re: proxy doesn't cache

2013-05-11 Thread Maxim Dounin
Hello! On Fri, May 10, 2013 at 11:13:42AM +0800, Stefan Xenon wrote: > Hi! > I want to use nginx as a caching proxy in front of an OCSP responder. > The OCSP requests are transmitted via HTTP POST. > > Hence, I configured nginx as follows: > > proxy_cache_path /tmp/nginx/cache levels=1:2 keys_

proxy doesn't cache

2013-05-09 Thread Stefan Xenon
Hi! I want to use nginx as a caching proxy in front of an OCSP responder. The OCSP requests are transmitted via HTTP POST. Hence, I configured nginx as follows: proxy_cache_path /tmp/nginx/cache levels=1:2 keys_zone=my-cache:8m max_size=1000m inactive=600m; server { server_name localhost; lo