summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_cgid.xml
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2002-11-07 04:34:36 +0100
committerAndré Malo <nd@apache.org>2002-11-07 04:34:36 +0100
commitd2a3e5d7615c107e1ae2c369a8a030e4f8714ce0 (patch)
treece1c2ac550112ae3aeb259221686b7e14adb80d8 /docs/manual/mod/mod_cgid.xml
parentAs per discussion on users@httpd.apache.org and a little on IRC, clarify (diff)
downloadapache2-d2a3e5d7615c107e1ae2c369a8a030e4f8714ce0.tar.xz
apache2-d2a3e5d7615c107e1ae2c369a8a030e4f8714ce0.zip
- <em> -> <var> (hey, that was easy :))
- add some <module>s - add <seealso>s to suexec.html - add explicit <seealso> from mod_cgid to mod_cgi - add short description of the ScriptSock directive -> update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97436 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_cgid.xml')
-rw-r--r--docs/manual/mod/mod_cgid.xml17
1 files changed, 11 insertions, 6 deletions
diff --git a/docs/manual/mod/mod_cgid.xml b/docs/manual/mod/mod_cgid.xml
index 23f3e5d10c..fbfa1e1019 100644
--- a/docs/manual/mod/mod_cgid.xml
+++ b/docs/manual/mod/mod_cgid.xml
@@ -14,15 +14,15 @@
<summary>
<p>Except for the optimizations and the additional <directive
module="mod_cgid">ScriptSock</directive> directive noted below,
- mod_cgid behaves similarly to mod_cgi. <strong>See the
- <module>mod_cgi</module> Summary for additional details about
- Apache and CGI.</strong></p>
+ <module>mod_cgid</module> behaves similarly to <module>mod_cgi</module>.
+ <strong>See the <module>mod_cgi</module> summary for additional details
+ about Apache and CGI.</strong></p>
<p>On certain unix operating systems, forking a process from a
multi-threaded server is a very expensive operation because the
new process will replicate all the threads of the parent
process. In order to avoid incurring this expense on each CGI
- invocation, mod_cgid creates an external daemon that is
+ invocation, <module>mod_cgid</module> creates an external daemon that is
responsible for forking child processes to run CGI scripts. The
main server communicates with this daemon using a unix domain
socket.</p>
@@ -37,6 +37,9 @@
daemon.</p>
</summary>
+<seealso><module>mod_cgi</module></seealso>
+<seealso><a href="../suexec.html">Running CGI programs under different user IDs</a></seealso>
+
<directivesynopsis location="mod_cgi">
<name>ScriptLog</name>
</directivesynopsis>
@@ -51,7 +54,9 @@
<directivesynopsis>
<name>ScriptSock</name>
-<syntax>ScriptSock <em>file-path</em></syntax>
+<description>The name of the socket to use for communication with
+the cgi daemon</description>
+<syntax>ScriptSock <var>file-path</var></syntax>
<default>ScriptSock logs/cgisock</default>
<contextlist><context>server config</context>
<context>virtual host</context></contextlist>
@@ -65,7 +70,7 @@
write in the directory where the socket is located.</p>
<example><title>Example</title>
- ScriptSock /var/run/cgid.sock
+ ScriptSock /var/run/cgid.sock
</example>
</usage>