c 语言写的fastcgi 程序

来源:互联网 发布:网络棋牌赌博平台出租 编辑:程序博客网 时间:2024/05/16 00:55

最近接触了网页,听说c语言能写网页,于是鼓捣了一下,扫扫盲 ...


首先安装 fastcgi 开发包 ...

#wget http://www.fastcgi.com/dist/fcgi-current.tar.gz

#tar -zxvf fcgi-current.tar.gz

#cd fcgi-2.4.0

#./configure --prefix=/usr/local/fastcgi/

#make && make install


写一个简单的fcgi 程序

#vim hello.c 

内容如下:

#include </usr/local/fastcgi/include/fcgi_stdio.h>int main(void){    while( FCGI_Accept() >= 0){        printf( "Content-Type: text/html\r\n" );        printf("\r\n");        printf( "Hello world in C\n" );    }}

#gcc -o hello.fcgi hello.c -L /usr/local/fastcgi/lib/ -lfcgi


nginx.conf的配置要修改

server {listen 80;location ~ \.fcgi$ {            root           /srv/www;            fastcgi_pass   127.0.0.1:9002;            include        fastcgi_params;}}

重启nginx ,然后用fastcgi 启动程序,同时监听 9002 端口

# /usr/local/fastcgi/bin/cgi-fcgi -start -connect 127.0.0.1:9002 /srv/html/cgi/hello.fcgi


应该可以访问了 ..

http://qzier.com/cgi/hello.fcgi


还比较弱,建立一个QQ 群里,希望能聚集相关一起学习交流

linux && c,php,postgresql,nginx,运维,安全

QQ: 213572677


Reference :

http://www.kutukupret.com/2010/08/20/nginx-fastcgi-hello-world-in-c/


进一步优化

https://writer.zoho.com/public/6b6a49b6dcbb8205336873dd09e1b3517a451cd1e1176acb55cc7a120224dc4a6db04614eed231e5