Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/HTML/Mason.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ __END__

PerlModule HTML::Mason::ApacheHandler

<Location />
<Location>
SetHandler perl-script
PerlHandler HTML::Mason::ApacheHandler
</Location>
Expand Down Expand Up @@ -130,7 +130,7 @@ httpd.conf:

PerlModule HTML::Mason::ApacheHandler

<Location />
<Location>
SetHandler perl-script
PerlHandler HTML::Mason::ApacheHandler
</Location>
Expand All @@ -139,7 +139,7 @@ The PerlModule directive simply ensures that the Mason code is loaded
in the parent process before forking, which can save some memory when
running mod_perl.

The <Location> section routes all requests to the Mason handler, which
The C<< <Location> >> section routes all requests to the Mason handler, which
is a simple way to try out Mason. A more refined setup is discussed
in the L<Controlling Access via Filename Extension|HTML::Mason::Admin/Controlling Access via Filename Extension> section of the administrator's manual.

Expand Down