Thread mpm_worker_module / prefork + mod_perl (9 answers)
Opened by BiBo at 2011-02-14 02:33

Gast BIBO
 2011-02-14 21:18
#145651 #145651
Wenn ich schonmal meine mod_perl Konfig checken lasse, dann kann ich ja nochmal folgendes mit der bitte einer prüfung schreiben:

(bezüglich mod_perl auf Debian.)

Code: (dl )
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
<VirtualHost ****:80>
KeepAlive Off
TimeOut 25
EnableMMAP On
EnableSendfile On

AddHandler perl-script .pl .cgi
[ServerName +Logs usw. ....]

<Directory /PFAD ZU SKRIPTEN/>
Options +ExecCGI -Indexes
AllowOverride All

<Files ~ (\.pl$)>
SetHandler perl-script
PerlHandler ModPerl::Registry
Options ExecCGI
allow from all
PerlSendHeader On
</Files>





</Directory>



PerlOptions +Parent
PerlRequire /......../startup.pm
PerlInterpStart 1
PerlInterpMax 1
PerlInterpMinSpare 1
PerlInterpMaxSpare 1
PerlInterpMaxRequests 2500
PerlInterpScope request
PerlModule ModPerl::Registry
PerlResponseHandler ModPerl::Registry->handler
PerlOptions +ParseHeaders

</VirtualHost>



Ist das soweit sinnvoll in Verbindung mit oben genannter mpm_prefork_modul-konfiguration?
Ich bin mir bei allem nciht so sicher, weil ich vieles zusammenkopiert und anch Gut-Denken der Dokumentation einstellt habe....

Last edited: 2011-02-14 21:20:12 +0100 (CET)

View full thread mpm_worker_module / prefork + mod_perl