fix log-anon script
[ansible.git] / roles / apache / files / php5.conf
1 # FCGID-Config
2 # PHP should not terminate itself, let FCGID do that
3 FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 1000
4 FcgidMaxRequestsPerProcess 500
5 FcgidMaxProcesses 16
6 # Allow requests up to 8MB
7 FcgidMaxRequestLen 8388608
8
9
10 # macro to allow executing PHP scripts
11 <Macro PHP $wrapper>
12     Options +ExecCGI
13     FcgidWrapper $wrapper .php
14     <FilesMatch \.php$>
15         SetHandler fcgid-script
16     </FilesMatch>
17 </Macro>