Re: nginx cache opendir failed

2013-05-20 Thread Ronald Van Assche
SOLVED: Just chmod ( 4 seven) /var/cache/www , the parent directory of the nginx cache and voilà, it works. Le 19 mai 2013 à 17:51, Ronald Van Assche r...@onvaoo.com a écrit : Hi On a Freebsd 9.1 machine Nginx 1.4.1 opendir() /var/cache/www/nginx2 failed (13: Permission denied

Re: nginx cache opendir failed

2013-05-20 Thread Ronald Van Assche
to set access up for. Steve On 20/05/13 21:10, Ronald Van Assche wrote: SOLVED: Just chmod ( 4 seven) /var/cache/www , the parent directory of the nginx cache and voilà, it works. Le 19 mai 2013 à 17:51, Ronald Van Assche r...@onvaoo.com a écrit : Hi On a Freebsd 9.1

Re: blank page on some micro-cached pages

2013-11-25 Thread Ronald Van Assche
:00:52AM +0100, Ronald Van Assche wrote: Running Nginx 1.5.7 on Freebsd 9.1 with php-pfm 5.5.3 a wordpress site is micro-cached , but for some strange reason and not always , some pages ( wordpress post or pages even 3 or 7 days after their publication) are rendered for some users ( me

Re: blank page on some micro-cached pages

2013-11-25 Thread Ronald Van Assche
:47, Ronald Van Assche r...@onvaoo.com a écrit : It seems related to every update on a post and the use of the WP plugin Nginx-Helper if i add $upstream_cache_status to the log format , nothing is logged. Should i recompile Nginx 1.5 with some additional modules ? On the Freebsd port we

Re: blank page on some micro-cached pages

2013-11-25 Thread Ronald Van Assche
: Hello! On Mon, Nov 25, 2013 at 04:47:04PM +0100, Ronald Van Assche wrote: It seems related to every update on a post and the use of the WP plugin Nginx-Helper From a description of the plugin, it looks like it is expected to work with 3rd party cache purge module. It may explain things

Re: nginx-1.6.0

2014-04-25 Thread Ronald Van Assche
no Freebsd port ? Thanks. Le 24 avr. 2014 à 15:14, Maxim Dounin mdou...@mdounin.ru a écrit : Changes with nginx 1.6.0 24 Apr 2014 *) 1.6.x stable branch. -- Maxim Dounin http://nginx.org/en/donation.html

Microcache : empty pages ?

2014-08-13 Thread Ronald Van Assche
I have somme strange comportement on nginx 1.7.4 / Freebsd 9 : Some Wordpress microcached pages rendered ..EMPTY HTML pages , for about 1/20 visitors . When it happens, we have to make a forced reload of the page on the navigator (Firefox or others). configure arguments:

redirect question (inception inside)

2014-08-16 Thread Ronald Van Assche
I want to redirect /us/us/directory/filename to the /us/directory/filename directory on my Nginx server. but this if ( $request_filename ~ /us/us/.+ ) { rewrite ^(.*) http://mysiteurlt/us/$1 permanent; } wont work. How can i redirect or rewrite such url ?

Re: redirect question (inception inside)

2014-08-16 Thread Ronald Van Assche
YEP thank you : The matching is performed against a normalized URI, after decoding the text encoded in the “%XX” form, resolving references to relative path components “.” and “..”, and possible compression of two or more adjacent slashes into a single slash. so i do not have to put // in