web-dev-qa-db-ja.com

nginx:fastcgiを使用した複数のドキュメントルート

Httpディレクティブで単一のドキュメントルートを使用すると、すべてが正常に動作します。ただし、追加のディレクティブを使用して場所ディレクティブを追加したいのですが、この追加のルートでfastcgiを機能させることができません( http:// localhost/sqlbuddy にアクセスすると、ホワイトページが表示されます)。

ここに私のnginx.confの抜粋があります:

server {

root /home/tman/dev/project/trunk/data;
index index.php;

location /sqlbuddy {
    root /srv/http;
    index index.php;
}

location ~* \.php {
    fastcgi_pass 127.0.0.1:9000;
    include fastcgi.conf;
}
}

そして私のfastcgi.conf:

fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;

fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;

fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;

fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param  REDIRECT_STATUS    200;

Nginxのerror.logとphp-fpmのログの両方に、それに関するエラーは表示されません。すべてを同じドキュメントルートに入れたくないのですが。

3
tman

ルートを変更するときは、phpに渡す2番目の場所を設定する必要があります。

server {
  root /home/tman/dev/project/trunk/data;
  index index.php;

  # Use location ^~ to prevent regex locations from stealing requests
  location ^~ /sqlbuddy {
    root /srv/http;

    # This location will handle requests containing .php within /sqlbuddy
    # and will use the root set just above
    location ~* \.php {
      include fastcgi.conf;
      fastcgi_pass 127.0.0.1:9000;
    }
  }

  location ~* \.php {
    include fastcgi.conf;
    fastcgi_pass 127.0.0.1:9000;
  }
}

また、/ index.php/foo/barのようなパス情報スタイルのURLを使用している場合を除き、URIの末尾に一致をアンカーするために.phpを.php $に変更する必要があるでしょう。

10
kolbyjack

これは、Nginxが「最良の」locationブロックを選択するためです。

私が間違っていたら訂正してください。現在、Nginxはfastcgiのグローバル設定をサポートしていません。したがって、fastcgi_passを再定義する必要があります。

    location /sqlbuddy {
        root /srv/http;
        index index.php;
    }
    location /sqlbuddy/.+\.php$ {
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi.conf;
    }

または、2番目のiflocationディレクティブを使用して$request_uriを確認できます。

    location ~ \.php$ {
        if ($request_uri ~ /sqlbuddy/.*$) {
            root /srv/http;
        }
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi.conf;
    }
2
quanta