5 Einträge, 1 Seite |
1
2
3
4
5
<FilesMatch "hallo\.pl$">
SetHandler perl-script
PerlHandler ModPerl::Registry
Options +ExecCGI
</FilesMatch>
QuoteNein. Nicht merkwürdig. Das steht doch in der POD-Doku:merkwürdig, dass hier auch das Script bei jedem Aufruf auf änderungen gecheckt wird
QuoteModPerl::Registry - Run unaltered CGI scripts persistently under mod_perl
=head1 Synopsis
# httpd.conf
PerlModule ModPerl::Registry
Alias /perl/ /home/httpd/perl/
<Location /perl>
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
#PerlOptions +ParseHeaders
#PerlOptions -GlobalRequest
Options +ExecCGI
</Location>
=head1 Description
URIs in the form of C<http://example.com/perl/test.pl> will be
compiled as the body of a Perl subroutine and executed. Each child process will compile the subroutine once and store it in memory. It will recompile it whenever the file (e.g. I<test.pl> in our example) is updated on disk. Think of it as an object oriented server with each script implementing a class loaded at runtime.
5 Einträge, 1 Seite |