Guest User

Untitled

a guest
Mar 13th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. #This is the regular mode of operation here
  2. fastcgi.server = ( ".php" =>
  3. ( "localhost" =>
  4. (
  5. # "socket" => "/var/run/lighttpd/php-fastcgi.socket",
  6. "socket" => "/tmp/php-fm.sock",
  7. # "bin-path" => "/usr/local/bin/php-cgi",
  8. # "host" => "127.0.0.1",
  9. # "port" => "9000",
  10. "min-procs" => 1,
  11. "max-procs" => 1,
  12. "max-load-per-proc" => 2,
  13. "idle-timeout" => 30,
  14. "bin-environment" => (
  15. "PHP_FCGI_CHILDREN" => "2",
  16. "PHP_FCGI_MAX_REQUESTS" => "1000" ),
  17. "bin-copy-environment" => (
  18. "PATH", "SHELL", "USER" )
  19. )
  20. )
  21. )
Add Comment
Please, Sign In to add comment