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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
|
<section id="directives">
<title>Rivet Apache Directives</title>
<section>
<para>
Rivet directives are used within the Apache httpd server
configuration to set up the environment where Rivet script
will be run. Their precedence is as follows:
<command>RivetDirConf</command>,
<command>RivetUserConf</command>,
<command>RivetServerConf</command>, meaning that DirConf will
override UserConf, which will in turn override ServerConf.
</para>
<para>
The directive <command>ServerInitScript</command> plays a special
role since the script runs within the master interpreter,
an interpreter created before the Apache parent process spawns
the children that actually will serve the requests coming from
the network. During this stage Apache is still running as a
single process, so this is the right place for doing
initializations or loading packages. Since this
script will be running in a single process environment (from the
Apache point of view) <command>ServerInitScript</command>
is also the right place for doing anything needs to avoid
resource concurrency among processes (e.g. the creation and
initialization of an IPC system)
</para>
</section>
<section>
<variablelist>
<varlistentry>
<term>
<cmdsynopsis>
<command>RivetServerConf</command>
<group choice="req">
<arg>CacheSize</arg>
<arg>ServerInitScript</arg>
<arg>GlobalInitScript</arg>
<arg>ChildInitScript</arg>
<arg>ChildExitScript</arg>
<arg>BeforeScript</arg>
<arg>AfterScript</arg>
<arg>ErrorScript</arg>
<arg>AbortScript</arg>
<arg>AfterEveryScript</arg>
<arg>UploadDirectory</arg>
<arg>UploadMaxSize</arg>
<arg>UploadFilesToVar</arg>
<arg>SeparateVirtualInterps</arg>
<arg>SeparateChannels</arg>
<arg>HonorHeaderOnlyRequests</arg>
</group>
</cmdsynopsis>
</term>
<listitem>
<para>
<command>RivetServerConf</command> specifies a global
option that is valid for the whole server. If you have a
virtual host, in some cases, the option specified in the
virtualhost takes precedence over the 'global' version.
</para>
</listitem>
<listitem>
<variablelist>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">CacheSize</arg>
<arg><replaceable>size</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
Sets the size of the internal page cache, where
<option><replaceable>size</replaceable></option> is
the number of byte-compiled pages to be cached for
future use. Default is
<command>MaxRequestsPerChild</command> / 5, or 50,
if <command>MaxRequestsPerChild</command> is 0.
</para>
<para>
This option is completely global, even when using
separate, per-virtual host interpreters.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">ServerInitScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
Tcl script which is to run when the master interpreter is created.
Namespaces, variables and packages loaded during this stage will
be copied later on in the startup process, when child
processes are created.
</para>
<para>
This option is only available at the global level.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">GlobalInitScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
Tcl script run as part of a child process initialization.
If the option <option>SeparateVirtualInterp</option> is not used this is
the right place where file handles, database connections or sockets can
be opened.
The argument <replaceable><option>script</option></replaceable>
is an actual Tcl script, so to run a file, you would
do: <programlisting>RivetServerConf GlobalInitScript "source /var/www/foobar.tcl"</programlisting>
</para>
<para>
This option is ignored in virtual hosts.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">ChildInitScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
Script to be evaluated when each Apache child
process is initialized. This is the recommended
place to load modules, create global variables, open
connections to other facilities (such as databases)
and so on.
</para>
<para>
In virtual hosts, this script is run in addition to
any global childinitscript.
When <command>SeparateVirtualInterp</command>
any <command>ChildInitScript</command> placed within a
<option><VirtualHost ...>....</VirtualHost></option>
will be that Virtual Host specific ininitalization
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">ChildExitScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
Script to be evaluated when each Apache child
process exits. This is the logical place to clean
up resources created in <option>ChildInitScript</option>,
if necessary.
</para>
<para>
In virtual hosts, this script is run in addition to
any global childexitscript.
When <command>SeparateVirtualInterp</command>
any <command>ChildExitScript</command> placed within a
<option><VirtualHost ...>....</VirtualHost></option>
will be that Virtual Host specific exit handler
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">BeforeScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
Script to be evaluated before each server parsed
(.rvt) page. This can be used to create a standard
header, for instance. It could also be used to load
code that you need for every page, if you don't want
to put it in a <option>GlobalInitScript</option>
<option>ChildInitScript</option> when you are first
developing a web site.
<note>
This code is evaluated at the global level, not
inside the request namespace where pages are
evaluated.
</note>
</para>
<para>
In virtual hosts, this option takes precedence over
the global setting.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">AfterScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
Script to be called after each server parsed (.rvt) page.
</para>
<para>
In virtual hosts, this option takes precedence over
the global setting.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">ErrorScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
When Rivet encounters an error in a script, it
constructs an HTML page with some information about
the error, and the script that was being
evaluated. If an <option>ErrorScript</option> is
specified, it is possible to create custom error
pages. This may be useful if you want to make sure
that users never view your source code.
</para>
<para>
In virtual hosts, this option takes precedence over
the global setting.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">AfterEveryScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
<option>AfterEveryScript</option> is a script that is to
be run anyway before requests processing ends. This script
is therefore run both when the content generation script
completes successfully and when its execution is interrupted
by <xref linkend="abort_page" />. The code in this script
can understand whether it's running after the page was
interrupted by calling <xref linkend="abort_page" />
with the argument <arg>-aborting</arg>. The command
will return 1 if an abort_page call took place
earlier in the request processing.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">AbortScript</arg>
<arg><replaceable>script</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>
The execution of a can be interrupted by
invoking <xref linkend="abort_page" />. If
an <option>AbortScript</option> is defined for the page
being generated, control is passed to it. <option>AbortScript</option>
is the right place where specific actions can be taken
to catch resources left dangling by the sudden interruption.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">UploadDirectory</arg>
<arg><replaceable>directory</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>Directory to place uploaded files.</para>
<para>
In virtual hosts, this option takes precedence over
the global setting.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">UploadMaxSize</arg>
<arg><replaceable>size</replaceable></arg>
</cmdsynopsis>
</term>
<listitem>
<para>Maximum size for uploaded files.</para>
<para>
In virtual hosts, this option takes precedence over
the global setting.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">UploadFilesToVar</arg>
<group choice="req"><arg>yes</arg><arg>no</arg></group>
</cmdsynopsis>
</term>
<listitem>
<para>
This option controls whether it is possible to
upload files to a Tcl variable. If you have a size
limit, and don't have to deal with large files, this
might be more convenient than sending the data to a
file on disk.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">SeparateVirtualInterps</arg>
<group choice="req">
<arg>yes</arg>
<arg>no</arg>
</group>
</cmdsynopsis>
</term>
<listitem>
<para>
If on, Rivet will create a separate Tcl interpreter
for each Apache virtual host. This is useful in an
ISP type situation where it is desirable to separate
clients into separate interpreters, so that they
don't accidentally interfere with one another.
</para>
<note>
This option is, by nature, only available at the
global level. By enabling <command>SeparateVirtualInterps</command>
you must rely only on <command>ChildInitScript</command> to
initialize the interpreters. Don't expect the
initialization done in <command>ServerInitScript</command> and
<command>GlobalInitScript</command> to be handed down to the
slave interpreters that are private to each configured
virtual host.
</note>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">SeparateChannels</arg>
<group choice="req">
<arg>yes</arg>
<arg>no</arg>
</group>
</cmdsynopsis>
</term>
<listitem>
<para>
Internally mod_rivet creates a new Tcl channel (Rivet channel) which is configured
as <command>stdout</command> and registered to each existing interpreter.
There is no need of multiple channels in a single thread as each thread can
serve only one request at a time. But if you are deploying mod_rivet in a
complex environment running unrelated applications developed by
different teams, it could be the case to have <command>SeparateVirtualInterps</command>
set. If you want to enhance the environment separation you may also
set <command>SeparateChannels</command> to force mod_rivet to create
a channel per each Tcl interpreter thus enabling single application
code to change the Rivet channel parameters without affecting other
applications (even though changing the Tcl channel parameters is a rare
necessity). Setting this options increases the system overheads as each
Rivet channel needs to allocate its own control structures and internal
buffers.
</para>
<note>
This option is implemented in order to have fine grain control over mod_rivet. In
nearly all practical cases you won't need to change Rivet Channel (stdout) settings
for different applications by calling <command>fconfigure stdout ....</command>.
This option is, by nature, only available at the global level and has effect only if
also <command>SeparateVirtualInterps</command> is set
</note>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<arg choice="plain">HonorHeaderOnlyRequests</arg>
<group choice="req">
<arg>yes</arg>
<arg>no</arg>
</group>
</cmdsynopsis>
</term>
<listitem>
<para>
If a HEAD requests is issued by the client Rivet detects
this case and sends back to the client a standard header
response. If the real header has to be examined (e.g.
for debugging) you can turn this options on.
</para>
<para>This option is, by nature, only available at the global level</para>
</listitem>
</varlistentry>
</variablelist>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<command>RivetDirConf</command>
<group choice="req">
<arg>BeforeScript</arg>
<arg>AfterScript</arg>
<arg>ErrorScript</arg>
<arg>UploadDirectory</arg>
</group>
</cmdsynopsis>
</term>
<listitem>
<para>
These options are the same as for
<command>RivetServerConf</command>, except that they are
only valid for the directory where they are specified, and
its subdirectories. It may be specified in <command>Directory</command>
sections.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<cmdsynopsis>
<command>RivetUserConf</command>
<group choice="req">
<arg>BeforeScript</arg>
<arg>AfterScript</arg>
<arg>ErrorScript</arg>
<arg>UploadDirectory</arg>
</group>
</cmdsynopsis>
</term>
<listitem>
<para>
These options are the same as for
<command>RivetServerConf</command>, except that they are
only valid for the directory where they are specified, and
its subdirectories.
</para>
</listitem>
</varlistentry>
</variablelist>
</section>
</section>
|