feat(): add UPLOAD_MAX_SIZE variable

This commit is contained in:
Hardware
2017-08-27 16:31:04 +02:00
parent 33741f7948
commit 87d843564e
9 changed files with 25 additions and 47 deletions

View File

@@ -0,0 +1,14 @@
[global]
daemonize = no
[www]
listen = /tmp/php-fpm.sock
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
chdir = /
php_admin_value[expose_php] = Off
php_admin_value[post_max_size] = <UPLOAD_MAX_SIZE>
php_admin_value[upload_max_filesize] = <UPLOAD_MAX_SIZE>