我正在尝试使用 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;
}
}
Run Code Online (Sandbox Code Playgroud)
我的 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;
}
Run Code Online (Sandbox Code Playgroud)
我使用 FastCGI 开发工具包编译 C 文件,它生成一个 hello 二进制文件。
最后我运行这一行:spawn-fcgi -a 127.0.0.1 -p 8000 -n /var/www/example.com/bin/hello
但是当我放入浏览器时,http://localhost
它会抛出“502 Bad Gateway”。
有人能给我带来一些光明吗?
您的 printf 行有错误 -
printf( "Content-Type: text/plainnn" );
Run Code Online (Sandbox Code Playgroud)
应该 -
printf( "Content-Type: text/plain\r\n\r\n" );
Run Code Online (Sandbox Code Playgroud)
请注意,\r\n\r\n
这是 HTTP 标头和 HTTP 正文之间的强制分隔符。
归档时间: |
|
查看次数: |
9598 次 |
最近记录: |