加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fcgi_demo.c 931 Bytes
一键复制 编辑 原始数据 按行查看 历史
github_os 提交于 2016-12-20 14:41 . add new file
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "fcgi_stdio.h"
int main(int argc,char* argv[]){
int count = 0;
//阻塞等待nginx服务器 给传递数据
while(FCGI_Accept() >= 0){
//自定义业务
//cgi程序会将stdout重定向到nginx->已经accept成功的cfd上
//cgi程序会将stdin重定向到nginx已经accept成功的cfd上
printf("Content-type:text/html\r\n");
printf("\r\n");
printf("<title>Fast CGI Hello!</title>");
printf("<h1>Fast CGI Hello</h1>");
printf("Request number %d running on host<i>%s</i>\n",++count,getenv("SERVER_NAME"));
printf("query_string:%s\r\n",getenv("QUERY_STRING"));
printf("remote addr:%s\r\n",getenv("REMOTE_ADDR"));
printf("remote port:%s\r\n",getenv("REMOTE_PORT"));
printf("server addr:%s\r\n",getenv("SERVER_ADDR"));
printf("server port:%s\r\n",getenv("SERVER_PORT"));
//redis
//fastDFS
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化