3 messages in ru.sysoev.nginxRe: Using nginx as a frontend for apa...
FromSent OnAttachments
Dieter ZinkeJan 24, 2009 1:45 am 
Maxim DouninJan 25, 2009 1:28 am 
Dieter ZinkeJan 26, 2009 1:47 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: Using nginx as a frontend for apache2 serving wordpress w/ super-cacheActions...
From:Dieter Zinke (diet@yahoo.com)
Date:Jan 26, 2009 1:47:53 am
List:ru.sysoev.nginx

Serving static from nginx doesnt work due to the following code in your server configuration:

# all other requests go to Wordpress if (!-e $request_filename) { rewrite . /index.php last; }

It's done at server level and tests file existence without root specified.

Thanks for your advice Maxim. I ve deleted the above lines and that works. But
it is curious. I use the same rewrite for my rootserver and in the rootservers
environment the same rewrite syntax works without problems. It is a standalone
nginx not proxiing to a apache. Curious!