gpt4 book ai didi

c++ - 使用nginx在c++中使用fastcgi访问环境变量

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:31:25 24 4
gpt4 key购买 nike

我正在尝试编写一个由 nginx 提供的 c++ fastcgi 程序。我已经编译了程序,并且 hello world 示例工作正常,但我似乎无法从 nginx 获取任何环境变量(REQUEST_METHOD)等。据我所知,我正在按照教程进行操作并具有相同的配置,所以我真的很想知道为什么它不起作用。这是我的配置:

location /cgi {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.html;
include /etc/nginx/fastcgi_params;
}

(fastcgi_params 与默认的 nginx 安装没有变化)。

然后是c++程序的相关代码:

streambuf * cin_streambuf  = cin.rdbuf();
streambuf * cout_streambuf = cout.rdbuf();
streambuf * cerr_streambuf = cerr.rdbuf();

FCGX_Request request;

FCGX_Init();
FCGX_InitRequest (&request, 0, 0);

while (FCGX_Accept_r (&request) == 0)
{
fcgi_streambuf cin_fcgi_streambuf (request.in);
fcgi_streambuf cout_fcgi_streambuf (request.out);
fcgi_streambuf cerr_fcgi_streambuf (request.err);

#if HAVE_IOSTREAM_WITHASSIGN_STREAMBUF
cin = &cin_fcgi_streambuf;
cout = &cout_fcgi_streambuf;
cerr = &cerr_fcgi_streambuf;
#else
cin.rdbuf(&cin_fcgi_streambuf);
cout.rdbuf(&cout_fcgi_streambuf);
cerr.rdbuf(&cerr_fcgi_streambuf);
#endif

//figure out what kind of request we have
char * request_type = FCGX_GetParam("REQUEST_METHOD", request.envp);

cout << "Content-type: text/html\r\n"
"\r\n";
cout << "Environment is: " << *request.envp;

}

调用 FCGX_GetParam 返回 null,当我输出 request.envp 时,唯一显示的变量是 FCGI_ROLE=RESPONDER。

我正在使用以下命令启动进程:

spawn-fcgi -p 9000 -n FCGI-App

一切都在 Ubuntu 11.10 下运行。

有什么想法吗?

最佳答案

您正在尝试打印 char **envp;cout << *request.envp .这应该只打印数组中的第一个字符串,这并不奇怪。

试试代码形式 official FCGI example相反:

static void penv(const char * const * envp)
{
cout << "<PRE>\n";
for ( ; *envp; ++envp)
{
cout << *envp << "\n";
}
cout << "</PRE>\n";
}

...

penv(request.envp);

关于c++ - 使用nginx在c++中使用fastcgi访问环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11547562/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com