最近接觸了網頁,聽說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