atom feed4 messages in ru.sysoev.nginxRe[2]: Unable log out of some applica...
FromSent OnAttachments
keefFeb 9, 2012 3:55 am 
MaxFeb 9, 2012 6:33 am 
keefFeb 9, 2012 8:28 am 
MaxFeb 9, 2012 9:39 am 
Subject:Re[2]: Unable log out of some applications.
From:Max (ngin@mail.ru)
Date:Feb 9, 2012 9:39:50 am
List:ru.sysoev.nginx

09 февраля 2012, 20:29 от "keef" <ngin@nginx.us>:

Thanks for the Info Max. We're stuck with a nginx v0.8..x.x that doesn't includes the"proxy_cache_bypass" directive so are not able to test your solution justnow. I have a workaround just now and will try the directive again once we upgrade nginx.

You're welcome. You can try the following workaround in the meantime:

location / { recursive_error_pages on; error_page 409 = @no_cache;

if ($http_authorization) { return 409; }

proxy_cache zone; proxy_pass $scheme://backend; }

location @no_cache { proxy_pass $scheme://backend; }