home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 May / Gamestar_62_2004-05_dvd.iso / Programy / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252693_mod_cgid.xml < prev    next >
Extensible Markup Language  |  2003-04-15  |  3KB  |  81 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <modulesynopsis metafile="mod_cgid.xml.meta">
  5.  
  6. <name>mod_cgid</name>
  7. <description>Execution of CGI scripts using an
  8.     external CGI daemon</description>
  9. <status>Base</status>
  10. <sourcefile>mod_cgid.c</sourcefile>
  11. <identifier>cgid_module</identifier>
  12. <compatibility>Unix threaded MPMs only</compatibility>
  13.  
  14. <summary>
  15.     <p>Except for the optimizations and the additional <directive
  16.     module="mod_cgid">ScriptSock</directive> directive noted below,
  17.     <module>mod_cgid</module> behaves similarly to <module>mod_cgi</module>.
  18.     <strong>See the <module>mod_cgi</module> summary for additional details
  19.     about Apache and CGI.</strong></p>
  20.  
  21.     <p>On certain unix operating systems, forking a process from a
  22.     multi-threaded server is a very expensive operation because the
  23.     new process will replicate all the threads of the parent
  24.     process. In order to avoid incurring this expense on each CGI
  25.     invocation, <module>mod_cgid</module> creates an external daemon that is
  26.     responsible for forking child processes to run CGI scripts. The
  27.     main server communicates with this daemon using a unix domain
  28.     socket.</p>
  29.  
  30.     <p>This module is used by default instead of
  31.     <module>mod_cgi</module> whenever a multi-threaded MPM
  32.     is selected during the compilation process. At the user level,
  33.     this module is identical in configuration and operation to
  34.     <module>mod_cgi</module>. The only exception is the
  35.     additional directive <code>ScriptSock</code> which gives the
  36.     name of the socket to use for communication with the cgi
  37.     daemon.</p>
  38. </summary>
  39.  
  40. <seealso><module>mod_cgi</module></seealso>
  41. <seealso><a href="../suexec.html">Running CGI programs under different user IDs</a></seealso>
  42.  
  43. <directivesynopsis location="mod_cgi">
  44. <name>ScriptLog</name>
  45. </directivesynopsis>
  46.  
  47. <directivesynopsis location="mod_cgi">
  48. <name>ScriptLogLength</name>
  49. </directivesynopsis>
  50.  
  51. <directivesynopsis location="mod_cgi">
  52. <name>ScriptLogBuffer</name>
  53. </directivesynopsis>
  54.  
  55. <directivesynopsis>
  56. <name>ScriptSock</name>
  57. <description>The name of the socket to use for communication with
  58. the cgi daemon</description>
  59. <syntax>ScriptSock <var>file-path</var></syntax>
  60. <default>ScriptSock logs/cgisock</default>
  61. <contextlist><context>server config</context>
  62. <context>virtual host</context></contextlist>
  63.  
  64. <usage>
  65.     <p>This directive sets the name of the socket to use for
  66.     communication with the CGI daemon. The socket will be opened
  67.     using the permissions of the user who starts Apache (usually
  68.     root). To maintain the security of communications with CGI
  69.     scripts, it is important that no other user has permission to
  70.     write in the directory where the socket is located.</p>
  71.  
  72.     <example><title>Example</title>
  73.       ScriptSock /var/run/cgid.sock
  74.     </example>
  75.  
  76. </usage>
  77. </directivesynopsis>
  78.  
  79. </modulesynopsis>
  80.  
  81.