check_logfiles: 3.7.5.1
[omd.git] / packages / apache-omd / skel / etc / apache / conf.d / 02_fcgid.conf
blobf8815f29290f66660598e6b758df404b33162115
1 <IfModule !mod_fcgid.c>
2   LoadModule fcgid_module ###APACHE_FCGID_MODULE###
3 </IfModule>
5 MaxProcessCount 10
6 MaxRequestsPerProcess 500
7 IPCConnectTimeout 20
8 IPCCommTimeout 120
9 GracefulShutdownTimeout 120
11 # mod_fcgid default is 128 kb which is too small for needed file
12 # uploads like used e.g. by NagVis. Set this to 3 MB.
13 MaxRequestLen 3145728
15 <Location /###SITE###/>
16   AddHandler fcgid-script .php
17   AddHandler fcgid-script .sh
19   FcgiWrapper  ###ROOT###/etc/apache/php-wrapper .php
21   Options +ExecCGI
22 </Location>