nginx, nginx-passenger, and a nested wordpress ...
grantmichaels
nginx-forum at nginx.us
Sun Oct 4 05:49:41 MSD 2009
so, for sinatra (ruby) sites running with nginx-passenger i'm using something basic like:
server {
listen 80;
server_name .;
root /www//public;
location ~* \.(ico|css|js|gif|jp?g|png)(\?[0-9]+)?$ {
expires max;
break;
}
passenger_enabled on;
}
and for a normal Wordpress site I'm using something like:
server {
listen 80;
server_name .;
access_log /www/public_html//log/access.log;
error_log /www/public_html//log/error.log;
location / {
root /www/public_html//public/;
index index.php index.html;
include /opt/nginx/conf/wordpress_params.super_cache;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /opt/nginx/conf/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /www/public_html//public/$fastcgi_script_name;
}
}
and I'm out to experiment within wrapping Wordpress within Sinatra/Rack a la this example using Apache:
http://railsdog.com/blog/2009/06/using-rack-to-combine-sinatra-and-word-press/
where they use the block:
PassengerEnabled off
... to exclude the blog that's located in a sub-directory under /public from being handled by Passenger ...
I've gotten myself confused as to how to modify my aforementioned Sinatra server block to have a second location (like, "location /wp") besides the "location /" block where I can use the "passenger_enabled off;" directive ...
any help is appreciated!
grantmichaels
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,11044,11044#msg-11044
More information about the nginx
mailing list