<-
Apache > HTTP Server > Documentation > Version 2.4 > 모듈

아파치 모듈 mod_cgid

가능한 언어:  en  |  fr  |  ja  |  ko 

이 문서는 최신판 번역이 아닙니다. 최근에 변경된 내용은 영어 문서를 참고하세요.
설명:외부 CGI 데몬을 사용하여 CGI 스크립트를 실행
상태:Base
모듈명:cgid_module
소스파일:mod_cgid.c
지원:유닉스에서 쓰레드를 사용하는 MPMs 전용

요약

아래에서 설명하는 추가된 ScriptSock 지시어를 제외하고 mod_cgidmod_cgi와 비슷하게 동작한다. 아파치와 CGI에 대한 자세한 설명은 mod_cgi를 참고하라.

어떤 유닉스 운영체제의 경우 다중쓰레드 서버에서 프로세스를 포크(fork)하면 새로운 프로세스가 부모 프로세스의 모든 쓰레드를 복제해야 하므로 부담이 된다. CGI 실행마다 이런 부담을 주지 않기위해 mod_cgid는 CGI 스크립트를 실행하는 자식 프로세스를 포크하는 외부 데몬을 만든다. 주서버는 이 데몬과 유닉스소켓(unix domain socket)을 사용하여 통신한다.

컴파일할때 다중쓰레드 MPM을 선택하면 기본적으로 mod_cgi 대신 이 모듈을 사용한다. 사용자 입장에서 이 모듈의 설정과 동작은 mod_cgi와 동일하다. 유일한 차이점은 cgi 데몬과 통신을 위해 사용할 소켓의 이름을 설정하는 ScriptSock 지시어가 추가된 점이다.

Support Apache!

지시어들

Bugfix checklist

참고

top

CGIDScriptTimeout 지시어

설명:The length of time to wait for more output from the CGI program
문법:CGIDScriptTimeout time[s|ms]
기본값:value of Timeout directive when unset or set to 0
사용장소:주서버설정, 가상호스트, directory, .htaccess
상태:Base
모듈:mod_cgid
지원:Available in httpd 2.4.10 and later; in prior releases no timeout was applied

The documentation for this directive has not been translated yet. Please have a look at the English version.

top

ScriptSock 지시어

설명:cgi 데몬과 통신을 위해 사용할 소켓의 이름
문법:ScriptSock file-path
기본값:ScriptSock logs/cgisock
사용장소:주서버설정, 가상호스트
상태:Base
모듈:mod_cgid

이 지시어는 CGI 데몬과 통신을 위해 사용할 소켓의 이름을 지정한다. 아파치를 시작한 사용자 (보통 root) 권한으로 소켓을 연다. CGI 스크립트와 통신의 보안을 위해 다른 사용자가 소켓이 있는 디렉토리에 쓰기권한을 가지지않는 것이 중요하다.

예제

ScriptSock /var/run/cgid.sock

가능한 언어:  en  |  fr  |  ja  |  ko 

top

Comments

Notice:
This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Libera.chat, or sent to our mailing lists.