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
'공부를 해보자 > 프로그래밍' 카테고리의 다른 글
Broadcast IP (0) | 2010.04.22 |
---|---|
[Link]정규표현식 (0) | 2010.04.06 |
IPC:Message Queues (0) | 2010.03.26 |
JPEG EXIF (0) | 2010.03.05 |
HTTP server push (0) | 2010.02.09 |