1=head1 NAME
2
3mod_perl 2.0 Server Configuration
4
5
6
7=head1 Description
8
9This chapter provides an indepth mod_perl 2.0 configuration details.
10
11
12
13
14
15
16
17=head1 mod_perl configuration directives
18
19Similar to mod_perl 1.0, in order to use mod_perl 2.0 a few
20configuration settings should be added to I<httpd.conf>. They are
21quite similar to 1.0 settings but some directives were renamed and new
22directives were added.
23
24
25
26
27
28
29
30
31
32=head1 Enabling mod_perl
33
34To enable mod_perl built as DSO add to I<httpd.conf>:
35
36  LoadModule perl_module modules/mod_perl.so
37
38This setting specifies the location of the mod_perl module relative to
39the C<ServerRoot> setting, therefore you should put it somewhere after
40C<ServerRoot> is specified.
41
42If mod_perl has been statically linked it's automatically enabled.
43
44Win32 users need to make sure that the path to the Perl binary (e.g.,
45I<C:\Perl\bin>) is in the C<PATH> environment variable.
46
47
48
49=head1 Maintainers
50
51Maintainer is the person(s) you should contact with updates,
52corrections and patches.
53
54=over
55
56=item *
57
58Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
59
60=item *
61
62Stas Bekman E<lt>stas (at) stason.orgE<gt>
63
64=back
65
66=head1 Authors
67
68=over
69
70=item *
71
72Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
73
74=back
75
76Only the major authors are listed above. For contributors see the
77Changes file.
78
79=cut
80