2

我已经实现了一个使用 lighttp Web 服务器和 fcgi(c 脚本)的程序。我已经搜索了很多次,但没有找到任何页面指南来做到这一点。只需设置 lighttpd 和 python fcgi 或 php fcgi... 但 C fcgi。谁能帮我配置lighttpd和c fcgi?非常感谢。

我已经编写了如下示例,并将其构建为可执行文件。但现在我不知道如何使用 lighttpd 网络服务器运行它。

#include "fcgi_stdio.h"
#include <stdlib.h>
#include <stdio.h>
int count;
using namespace std;
void initialize(void)
{
  count=0;
}

int main(void)
{
/* Initialization. */
  initialize();

/* Response loop. */
  while (FCGI_Accept() >= 0)   {
    printf("Content-type: text/html\r\n"
           "\r\n"
           "<title>FastCGI Hello! (C, fcgi_stdio library)</title>"
           "<h1>FastCGI Hello! (C, fcgi_stdio library)</h1>"
           "Request number %d running on host <i>%s</i>\n",
            ++count, getenv("SERVER_HOSTNAME"));
  }
  return 0;
}
4

1 回答 1

1

默认情况下,lighthttp 只允许在目录 'cgi-bin' 中执行 cgi 脚本。因此,只需将您的 cgi 程序放在“/cgi-bin”中,它就可以使用默认配置。

这是 C 语言中的 cgi 示例

#include <stdio.h>

int main(void)
{
   printf("Content-type: text/plain\n\n");
   puts("Hello from cgi-bin!...");
   return 0;
}

编译

cc 1.c -o 1

测试

wget localhost:82/cgi-bin/1
--2014-03-20 16:27:36--  http://localhost:82/cgi-bin/1
Resolving localhost (localhost)... 127.0.0.1
Connecting to localhost (localhost)|127.0.0.1|:82... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/plain]
Saving to: `1'

    [ <=>                                                                                                                              ] 21          --.-K/s   in 0s

2014-03-20 16:27:37 (1.08 MB/s) - `1' saved [21]

cat 1
hello from C cgi!...

更新

默认情况下,您将 cgi 的配置文件放置在此处:

/etc/lighttpd/conf-available/10-cgi.conf

您必须创建一个符号并重新启动 lig​​hthttpd

sudo ln -s /etc/lighttpd/conf-available/10-cgi.conf /etc/lighttpd/conf-enabled/10-cgi.conf

这是 cgi 配置文件中必须包含的内容

cat /etc/lighttpd/conf-available/10-cgi.conf

server.modules += ( "mod_cgi" )

$HTTP["url"] =~ "^/cgi-bin/" {
    cgi.assign = ( "" => "" )
}
于 2014-03-20T16:32:08.093 回答