Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ; if you're using the starter bundle file `docker/php/php-fpm.d/docker.conf`
  2. [global]
  3. daemonize = no
  4. pid = run/php-fpm.pid
  5.  
  6. [www]
  7. listen = /usr/local/var/run/php-fpm.sock
  8. listen.owner = www-data
  9. listen.group = www-data
  10. listen.mode = 0660
  11. pm = dynamic
  12. pm.max_children = ${PHP_FPM_PM_MAX_CHILDREN}
  13. pm.start_servers = ${PHP_FPM_PM_START_SERVERS}
  14. pm.min_spare_servers = ${PHP_FPM_PM_MIN_SPARE_SERVERS}
  15. pm.max_spare_servers = ${PHP_FPM_PM_MAX_SPARE_SERVERS}
  16. pm.max_requests = ${PHP_FPM_PM_MAX_REQUESTS}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement