Guest User

Untitled

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