summaryrefslogtreecommitdiff
path: root/htdocs/manual/mod/mod_cgi.html.en
blob: d333f46ab38d029de8d74c515832ed756298c82a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
    <meta name="generator" content="HTML Tidy, see www.w3.org" />

    <title>Apache module mod_cgi</title>
  </head>
  <!-- Background white, links blue (unvisited), navy (visited), red (active) -->

  <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
  vlink="#000080" alink="#FF0000">
    <!--#include virtual="header.html" -->

    <h1 align="CENTER">Module mod_cgi</h1>

    <p>This module provides for execution of CGI scripts.</p>

    <p><a href="module-dict.html#Status"
    rel="Help"><strong>Status:</strong></a> Base<br />
     <a href="module-dict.html#SourceFile"
    rel="Help"><strong>Source File:</strong></a> mod_cgi.c<br />
     <a href="module-dict.html#ModuleIdentifier"
    rel="Help"><strong>Module Identifier:</strong></a>
    cgi_module</p>

    <h2>Summary</h2>
    <!-- XXX: Should have references to CGI definition/RFC -->
    Any file that has the mime type
    <code>application/x-httpd-cgi</code> or handler
    <code>cgi-script</code> (Apache 1.1 or later) will be treated
    as a CGI script, and run by the server, with its output being
    returned to the client. Files acquire this type either by
    having a name containing an extension defined by the <a
    href="mod_mime.html#addtype">AddType</a> directive, or by being
    in a <a href="mod_alias.html#scriptalias">ScriptAlias</a>
    directory. Files that are not in a <a
    href="mod_alias.html#scriptalias">ScriptAlias</a> directory,
    but which are of type <code>application/x-httpd-cgi</code> by
    virtue of an <code>AddType</code> directive, will still not be
    executed by the server unless <code>Options ExecCGI</code> is
    enabled. See the <a
    href="core.html#options"><code>Options</code></a> directive for
    more details. 

    <p>When the server invokes a CGI script, it will add a variable
    called <code>DOCUMENT_ROOT</code> to the environment. This
    variable will contain the value of the <a
    href="core.html#documentroot">DocumentRoot</a> configuration
    variable.</p>

    <p>For an introduction to using CGI scripts with Apache, see
    our tutorial on <a href="../howto/cgi.html">Dynamic Content
    with CGI</a>.</p>

    <h2>Directives</h2>

    <ul>
      <li><a href="#scriptlog">ScriptLog</a></li>

      <li><a href="#scriptloglength">ScriptLogLength</a></li>

      <li><a href="#scriptlogbuffer">ScriptLogBuffer</a></li>
    </ul>

    <p>See also: <a href="core.html#options">Options</a>, <a
    href="mod_alias.html#scriptalias">ScriptAlias</a>, <a
    href="mod_mime.html#addtype">AddType</a> and <a
    href="mod_mime.html#addhandler">AddHandler</a>.</p>

    <h2>CGI Environment variables</h2>
    The server will set the CGI environment variables as described
    in the <a href="http://hoohoo.ncsa.uiuc.edu/cgi/">CGI
    specification</a>, with the following provisions: 

    <dl>
      <dt>REMOTE_HOST</dt>

      <dd>This will only be set if <a
      href="core.html#hostnamelookups"><code>HostnameLookups</code></a>
      is set to <code>on</code> (it is off by default), and if a
      reverse DNS lookup of the accessing host's address indeed
      finds a host name.</dd>

      <dt>REMOTE_IDENT</dt>

      <dd>This will only be set if <a
      href="core.html#identitycheck">IdentityCheck</a> is set to
      <code>on</code> and the accessing host supports the ident
      protocol. Note that the contents of this variable cannot be
      relied upon because it can easily be faked, and if there is a
      proxy between the client and the server, it is usually
      totally useless.</dd>

      <dt>REMOTE_USER</dt>

      <dd>This will only be set if the CGI script is subject to
      authentication.</dd>
    </dl>

    <h2><a id="cgi_debug" name="cgi_debug">CGI Debugging</a></h2>
    Debugging CGI scripts has traditionally been difficult, mainly
    because it has not been possible to study the output (standard
    output and error) for scripts which are failing to run
    properly. These directives, included in Apache 1.2 and later,
    provide more detailed logging of errors when they occur. 

    <h2>CGI Logfile Format</h2>
    When configured, the CGI error log logs any CGI which does not
    execute properly. Each CGI script which fails to operate causes
    several lines of information to be logged. The first two lines
    are always of the format: 
<pre>
  %% [<em>time</em>] <em>request-line</em>
  %% <em>HTTP-status</em> <em>CGI-script-filename</em>
</pre>
    If the error is that CGI script cannot be run, the log file
    will contain an extra two lines: 
<pre>
  %%error
  <em>error-message</em>
</pre>
    Alternatively, if the error is the result of the script
    returning incorrect header information (often due to a bug in
    the script), the following information is logged: 
<pre>
  %request
  <em>All HTTP request headers received</em>
  <em>POST or PUT entity (if any)</em>
  %response
  <em>All headers output by the CGI script</em>
  %stdout
  <em>CGI standard output</em>
  %stderr
  <em>CGI standard error</em>
</pre>
    (The %stdout and %stderr parts may be missing if the script did
    not output anything on standard output or standard error). 
    <hr />

    <h3><a id="scriptlog" name="scriptlog">ScriptLog</a>
    directive</h3>
    <a href="directive-dict.html#Syntax"
    rel="Help"><strong>Syntax:</strong></a> ScriptLog
    <em>filename</em><br />
     <a href="directive-dict.html#Default"
    rel="Help"><strong>Default:</strong></a> none<br />
     <a href="directive-dict.html#Context"
    rel="Help"><strong>Context:</strong></a> server config<br />
     <a href="directive-dict.html#Status"
    rel="Help"><strong>Status:</strong></a> mod_cgi 

    <p class="currentdocs"><strong>Current documentation for this directive may be found <a
    href="http://httpd.apache.org/docs/current/mod/mod_cgi.html#scriptlog">here</a></strong></p>
 
    <p>The <tt>ScriptLog</tt> directive sets the CGI script error
    logfile. If no ScriptLog is given, no error log is created. If
    given, any CGI errors are logged into the filename given as
    argument. If this is a relative file or path it is taken
    relative to the server root.</p>

    <p>This log will be opened as the user the child processes run
    as, ie. the user specified in the main <a
    href="core.html#user">User</a> directive. This means that
    either the directory the script log is in needs to be writable
    by that user or the file needs to be manually created and set
    to be writable by that user. If you place the script log in
    your main logs directory, do <strong>NOT</strong> change the
    directory permissions to make it writable by the user the child
    processes run as.</p>

    <p>Note that script logging is meant to be a debugging feature
    when writing CGI scripts, and is not meant to be activated
    continuously on running servers. It is not optimized for speed
    or efficiency, and may have security problems if used in a
    manner other than that for which it was designed.</p>
    <hr />

    <h3><a id="scriptloglength"
    name="scriptloglength">ScriptLogLength</a> directive</h3>
    <a href="directive-dict.html#Syntax"
    rel="Help"><strong>Syntax:</strong></a> ScriptLogLength
    <em>bytes</em><br />
     <a href="directive-dict.html#Default"
    rel="Help"><strong>Default:</strong></a> 10385760<br />
     <a href="directive-dict.html#Context"
    rel="Help"><strong>Context:</strong></a> server config<br />
     <a href="directive-dict.html#Status"
    rel="Help"><strong>Status:</strong></a> mod_cgi 

    <p class="currentdocs"><strong>Current documentation for this directive may be found <a
    href="http://httpd.apache.org/docs/current/mod/mod_cgi.html#scriptloglength">here</a></strong></p>
 
    <p><tt>ScriptLogLength</tt> can be used to limit the size of
    the CGI script logfile. Since the logfile logs a lot of
    information per CGI error (all request headers, all script
    output) it can grow to be a big file. To prevent problems due
    to unbounded growth, this directive can be used to set an
    maximum file-size for the CGI logfile. If the file exceeds this
    size, no more information will be written to it.</p>
    <hr />

    <h3><a id="scriptlogbuffer"
    name="scriptlogbuffer">ScriptLogBuffer</a></h3>
    <a href="directive-dict.html#Syntax"
    rel="Help"><strong>Syntax:</strong></a> ScriptLogBuffer
    <em>bytes</em><br />
     <a href="directive-dict.html#Default"
    rel="Help"><strong>Default:</strong></a> 1024<br />
     <a href="directive-dict.html#Context"
    rel="Help"><strong>Context:</strong></a> server config<br />
     <a href="directive-dict.html#Status"
    rel="Help"><strong>Status:</strong></a> mod_cgi 

    <p class="currentdocs"><strong>Current documentation for this directive may be found <a
    href="http://httpd.apache.org/docs/current/mod/mod_cgi.html#scriptlogbuffer">here</a></strong></p>
 
    <p>The size of any PUT or POST entity body that is logged to
    the file is limited, to prevent the log file growing too big
    too quickly if large bodies are being received. By default, up
    to 1024 bytes are logged, but this can be changed with this
    directive. <!--#include virtual="footer.html" -->
    </p>
  </body>
</html>