Guest User

Untitled

a guest
May 16th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. fastcgi.server = ( ".php" =>
  2. ((
  3. "bin-path" => "/usr/bin/php-cgi",
  4. "socket" => "/tmp/php.socket",
  5. "min-procs" => 1,
  6. "max-procs" => 20,
  7. "idle-timeout" => 20,
  8. "bin-environment" => (
  9. "PHP_FCGI_CHILDREN" => "20",
  10. "PHP_FCGI_MAX_REQUESTS" => "10000"
  11. ),
  12. "bin-copy-environment" => (
  13. "PATH", "SHELL", "USER"
  14. ),
  15. "broken-scriptfilename" => "enable"
  16. ))
  17. )
Add Comment
Please, Sign In to add comment