1

I have a rails app (let's call it myapp) running at www.myapp.com. I want to add a wordpress blog at www.myapp.com/blog. The webserver for the rails app is thin (see the upstream block). The wordpress runs with php-fastcgi.

The rails app works fine. My problem is the following: in /home/myapp/myapp/log/error.log error I get:

2013/06/24 10:19:40 [error] 26066#0: *4 connect() failed (111: Connection refused) while connecti\
ng to upstream, client: xx.xx.138.20, server: www.myapp.com, request: "GET /blog/ HTTP/1.1", \
upstream: "fastcgi://127.0.0.1:9000", host: "www.myapp.com"

Here is the nginx conf file:

upstream  myapp {
   server   unix:/tmp/thin_myapp.0.sock;
   server   unix:/tmp/thin_myapp.1.sock;
   server   unix:/tmp/thin_myapp2.sock;
}

server {
    listen       80;
    server_name www.myapp.com;
    client_max_body_size 20M;

        access_log /home/myapp/myapp/log/access.log;
        error_log  /home/myapp/myapp/log/error.log error;
        root       /home/myapp/myapp/public;
        index      index.html;

         location / {                             

             proxy_set_header  X-Real-IP  $remote_addr;
             proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
             proxy_set_header  Host $http_host;
         proxy_redirect    off;

            # Index HTML Files                                                                
            if (-f $document_root/cache/$uri/index.html) {
                rewrite (.*) /cache/$1/index.html break;
        }

            if (!-f $request_filename) {
                proxy_pass http://myapp;
                break;
            }
           #  try_files /system/maintenance.html $uri $uri/index.html $uri.html @ruby;        

         }

         location /blog/ {
             root               /var/www/wordpress;
             fastcgi_index  index.php;

             if (!-e $request_filename) {
                 rewrite  ^(.*)$  /blog/index.php?q=$1  last;
             }

             include /etc/nginx/fastcgi_params;
             fastcgi_param  SCRIPT_FILENAME    /var/www/wordpress$fastcgi_script_name;
             fastcgi_pass   localhost:9000;  # port to FastCGI                                           
         }

}

Any ideas why that doesn't work ? How do I make sure that php-factcgi is configured properly ?

Edit: I cant test if fastcgi is running with telnet:

$> telnet 127.0.0.1 9000
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused

And it's not.

2 Answers2

2

php-fpm is not running. Just start it.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972
1

The root of the problem was that php-fpm was not running (as @Michael pointed out)

I also changed the location block because assets were not served with the original config:

location ^~ /blog {
         root /var/www/wordpress;
         index index.php index.html index.htm;
         try_files $uri $uri/ /blog/index.php?$args;

         location ~ \.php$ {
             include /etc/nginx/fastcgi_params;
             #if ($uri !~ "^/images/") {                                                    
             #        fastcgi_pass unix:/var/run/php-fastcgi/php-fastcgi.socket;            
             #}                                                                             
             fastcgi_index index.php;
             fastcgi_param  SCRIPT_FILENAME /var/www/wordpress$fastcgi_script_name;
             fastcgi_pass localhost:9000;
         }
     }