공부를 해보자/프로그래밍
Lighttpd + FastCGI
도리곰
2010. 3. 30. 11:34
FastCGI
일반 CGI는 각 요청에 프로세스가 생성되고 요청을 처리한 후 종료되는 반면 FastCGI는 한 프로세스에서 여러 요청을 처리한다.
Lighttpd의 FastCGI
Configure파일(lighttpd.conf)
참고 사이트
...
server.modules = (
"mod_cgi",
"mod_fastcgi",
"mod_auth",
...
)
...
참고 사이트
- fastcgi 공식 홈페이지 : http://www.fastcgi.com/
- 위키피디아 설명 : http://en.wikipedia.org/wiki/FastCGI
- lighttpd FastCGI 모듈 : http://redmine.lighttpd.net/wiki/lighttpd/Docs:ModFastCGI
- http://www.cyberciti.biz/tips/lighttpd-php-fastcgi-configuration.html
- lighttpd + php fastcgi + xcache 설치하기: http://www.rain9.com/tc/82