Skip to content

Instantly share code, notes, and snippets.

@torniker
Created May 13, 2015 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save torniker/e5192a3e42b4d72092ca to your computer and use it in GitHub Desktop.
Save torniker/e5192a3e42b4d72092ca to your computer and use it in GitHub Desktop.
Php FPM config
[global]
error_log = /proc/self/fd/2
daemonize = no
[www]
# BOOT2DOCKER LIMITATIONS
user = root
group = root
# SYMFONY 2 REQUIREMENTS
php_admin_value[date.timezone] = 'Asia/Tbilisi'
php_admin_value[cgi.fix_pathinfo] = '0'
access.log = /proc/self/fd/2
listen = 0.0.0.0:9000
pm = dynamic
pm.max_children = 100
pm.start_servers = 30
pm.min_spare_servers = 10
pm.max_spare_servers = 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment