修改編譯spawn-fcgi
因為用spawn-fcgi 啟動後不能喲 -u root 啟動FastCGI進程。所以修改了源代碼:
下載代碼
[plain]
wget http://download.lighttpd.net/spawn-fcgi/releases-1.6.x/spawn-fcgi-1.6.3.tar.gz
解壓後進入目錄,在文件src/spawn-fcgi.c中注釋掉一段代碼:
[plain]
/*
if (my_uid == 0) {
fprintf(stderr, "spawn-fcgi: I will not set uid to 0\n");
return -1;
}
*/
類似的還有兩處要注釋。
運行
./configure
然後編譯
make
make install
make install 不大靈光,手動拷貝吧。
現在再試試看,搞定了。