1

我正在尝试使用 FASTCgi 运行 Nginx 以通过 C 应用程序后端处理请求。

我正在使用本教程:http ://www.kutukupret.com/2010/08/20/nginx-fastcgi-hello-world-in-c/

我的 nginx 配置文件:

server
  {
    listen 80;
    listen [::]:80 default ipv6only=on;

    server_name localhost;

    location /
    {
      fastcgi_pass   127.0.0.1:8000;

      fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
      fastcgi_param  SERVER_SOFTWARE    nginx;
      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_FILENAME    $document_root$fastcgi_script_name;
      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  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;
    }
  }

我的 C 文件“hello.c”:

#include <fcgi_stdio.h>
int main( int argc, char *argv[] )
{
   while( FCGI_Accept() >= 0 ) {
      printf( "Content-Type: text/plainnn" );
      printf( "Hello world in Cn" );
   }
   return 0;
}

我使用 FastCGI 开发工具包编译 C 文件,它会生成一个 hello 二进制文件。

最后我运行这一行: spawn-fcgi -a 127.0.0.1 -p 8000 -n /var/www/example.com/bin/hello

但是当我放入浏览器时http://localhost,它会抛出“502 Bad Gateway”。

有人可以给我一些光吗?

4

4 回答 4

4

我建议查看 nginx 错误日志:

sudo tail -f /var/log/nginx/error.log

我遇到了同样的错误,但是使用 CppCMS 库和 unix 套接字与 Nginx 通信的 C++ 服务器。从错误日志中可以看出socket文件的文件权限有问题:

2014/05/28 14:52:01 [crit] 1818#0: *172 connect() to unix:/tmp/fcgi-socket failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: localhost, request: "GET /server HTTP/1.1", upstream: "fastcgi://unix:/tmp/fcgi-socket:", host: "localhost:8080"

只是将它们设置为 777 为我解决了这个问题。

于 2014-05-28T18:24:24.760 回答
4

您的 printf 行有错误 -

printf( "Content-Type: text/plainnn" );

应该 -

printf( "Content-Type: text/plain\r\n\r\n" );

请注意,\r\n\r\n这是 HTTP 标头和 HTTP 正文之间的强制分隔符。

于 2013-11-14T05:48:52.923 回答
0

看起来您的 php5-fpm 没有运行 om 8000 端口,因为您包含在 nginx conf 中

fastcgi_pass   127.0.0.1:8000;

您可以使用以下命令验证您的 php5-fpm 是否在该端口上运行

grep -Hr "8000" /etc/php5/fpm/pool.d

在 8000 上设置 php5-fpm 打开以下文件并更改监听 8000 端口

vim etc/php5/fpm/pool.d/www.conf

现在搜索听并将其替换为以下行

listen = 127.0.0.1:8000

保存文件并重启 php5-fpm

于 2013-08-19T07:54:43.750 回答
0

我过去也遇到过同样的错误。下面的配置对我有用。

location / {
    include fastcgi_params;
    fastcgi_pass  localhost:8000;
}
于 2020-03-26T11:58:24.950 回答