Help : How to configure mongrel_cluster + PHP with nginx

Edho P Arief edhoprima at gmail.com
Tue May 11 17:04:50 MSD 2010


On Tue, May 11, 2010 at 7:37 PM, karthi r <karthikr2006 at gmail.com> wrote:
> Hi Nginx team,
>
>              We are running Ruby on Rails application (Mongrel_cluster) with
> nginx, we tried to install PHP application in same server but the proxy_pass
> not redirected.
>
> How to configure mongrel_cluster + PHP with nginx same server and same
> domain
>
>
> Thanks and Regards,
> R.Karthik
>

upstream railsapp1 {
  server 127.0.0.1:9000;
  server 127.0.0.1:9001;
}
upstream railsapp2 {
  server 127.0.0.1:9010;
  server 127.0.0.1:9011;
}
server {
  listen 80;
  server_name lotsofapps.com;
  location = / { rewrite ^ /phpapp1/ permanent; }
  location ~ ^/phpapp1/.*\.php$ {
    root /srv/http/php;
    fastcgi_pass 127.0.0.1:9100;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $request_filename;
    include fastcgi_params;
  }
  location /phpapp1/ {
    root /srv/http/php;
    index index.php;
    try_files $uri $uri/ /phpapp1/index.php;
  }
  location = /phpapp1 { rewrite ^ /phpapp1/ permanent; }
  location @railsapp1 { proxy_pass http://railsapp1; }
  location = /railsapp1 { rewrite ^ /railsapp1/ permanent; }
  location /railsapp1/ {
    alias /srv/http/rails/railsapp1/public/;
    try_files $uri @railsapp1;
    expires max;
  }
  location @railsapp2 { proxy_pass http://railsapp2; }
  location = /railsapp2 { rewrite ^ /railsapp2/ permanent; }
  location /railsapp2/ {
    alias /srv/http/rails/devel/railsapp2/public/;
    try_files $uri @railsapp2;
    expires max;
  }
  location /whatever/ {
    root /srv/temp;
    autoindex on;
  }
  location /apacheapp/ { proxy_pass http://127.0.0.1:9200; }
}

etc.

-- 
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org



More information about the nginx mailing list