Advertisement
Guest User

Untitled

a guest
Apr 7th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. fastcgi.server += ( ".php" =>
  2. ((
  3. "bin-path" => "/usr/bin/php-cgi",
  4. "socket" => "/var/run/lighttpd/php.socket",
  5. "max-procs" => 10,
  6. "bin-environment" => (
  7. "PHP_FCGI_CHILDREN" => "10",
  8. "PHP_FCGI_MAX_REQUESTS" => "500"
  9. ),
  10. "bin-copy-environment" => (
  11. "PATH", "SHELL", "USER"
  12. ),
  13. "broken-scriptfilename" => "enable"
  14. ))
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement