commit | author | age | ||
c9b9f2 | 1 | #!/bin/sh |
526b99 | 2 | PHPRC={fastcgi_phpini_path} |
c9b9f2 | 3 | export PHPRC |
T | 4 | export PHP_FCGI_MAX_REQUESTS=5000 |
5 | export PHP_FCGI_CHILDREN=1 | |
2ab008 | 6 | export PHP_FCGI_MAX_REQUESTLEN=15728640 |
4bc030 | 7 | exec {fastcgi_bin} -d \ |
MK | 8 | -d disable_classes= \ |
9 | -d disable_functions= \ | |
10 | -d magic_quotes_gpc=off \ | |
11 | -d open_basedir= |