Ok - so i have high requirements :)
I'm actually running fine on nginx as a reverse proxy with all the said components bolted to wpmu.
I have 1 minor problem.
I have wpmu setup to run as directories. My blog themes inherit the wrong stylesheet URL's. E.g.
the style URL should be http://URL/wp-content/themes/mytheme/css/styles.css
What nginx is doing is adding /member/ after the URL e.g.
http://URL/*member*/wp-content/.... this obviously breaks any incldes.
its using the bloginfo('stylesheet_url') to get this BTW.
Well simple fix would be hardcode it. Yes that works, but buddypress plugin also has an ajax admin bar which has images / includes that are also affecting by nginx adding the /member/ name into the URL paths.
So really this problem could span across many things.
Does anyone who's hot on nginx have an idea on how i can stop nginx from putting the member name in the URL's of my blogs for includes / stylesheets.
Funny thing is, it forwards all other non blog stuff to apache absolutly fine.
Thanks,