@@ -181,32 +181,36 @@ When `PHP_FPM_CONTAINER_MODE` set to `nginx` the `PHP_FPM_LISTEN_PORT` environme
181181
182182* You can also pass arguments to each server as defined in the [ Nginx Upstream Documentation] ( https://nginx.org/en/docs/http/ngx_http_upstream_module.html ) *
183183
184- | Parameter | Description | Default |
185- | ---------------------------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
186- | ` PHP_APC_SHM_SIZE ` | APC Cache Memory size - ` 0 ` to disable | ` 128M ` |
187- | ` PHP_FPM_HOST ` | Default PHP-FPM Host, seperate multiple by commas | ` 127.0.0.1:9000 ` - See above Container options |
188- | ` PHP_FPM_LISTEN_PORT ` | PHP-FPM Listening Port - Ignored with above container options | ` 9000 ` |
189- | ` PHP_FPM_MAX_CHILDREN ` | Maximum Children | ` 75 ` |
190- | ` PHP_FPM_MAX_REQUESTS ` | How many requests before spawning new server | ` 500 ` |
191- | ` PHP_FPM_MAX_SPARE_SERVERS ` | Maximum Spare Servers available | ` 3 ` |
192- | ` PHP_FPM_MIN_SPARE_SERVERS ` | Minium Spare Servers avaialble | ` 1 ` |
193- | ` PHP_FPM_OUTPUT_BUFFER_SIZE ` | Output buffer size in bytes | ` 0 ` |
194- | ` PHP_FPM_POST_INIT_COMMAND ` | If you wish to execute a command before php-fpm executes, enter it here and seperate multiples by comma. | |
195- | ` PHP_FPM_POST_INIT_SCRIPT ` | If you wish to execute a script before php-fpm executes, enter it here and seperate multiples by comma. | |
196- | ` PHP_FPM_PROCESS_MANAGER ` | How to handle processes ` static ` , ` ondemand ` , ` dynamic ` | ` dynamic ` |
197- | ` PHP_FPM_START_SERVERS ` | How many FPM servers to start initially | ` 2 ` |
198- | ` PHP_LOG_ACCESS_FILE ` | PHP Access Logfile Name | ` access.log ` |
199- | ` PHP_LOG_ERROR_FILE ` | Logfile name | ` error.log ` |
200- | ` PHP_LOG_LEVEL ` | PHP Log Level ` alert ` ` error ` ` warning ` ` notice ` ` debug ` | ` notice ` |
201- | ` PHP_LOG_ACCESS_FORMAT ` | Log format - ` default ` or ` json ` | ` default ` |
202- | ` PHP_LOG_LIMIT ` | Characters to log | ` 2048 ` |
203- | ` PHP_LOG_LOCATION ` | Log Location for PHP Logs | ` /www/logs/php-fpm ` |
204- | ` PHP_MEMORY_LIMIT ` | How much memory should PHP use | ` 128M ` |
205- | ` PHP_OPCACHE_MEM_SIZE ` | OPCache Memory Size - Set ` 0 ` to disable or via other env vars | ` 128 ` |
206- | ` PHP_POST_MAX_SIZE ` | Maximum Input Size for POST | ` 2G ` |
207- | ` PHP_TIMEOUT ` | Maximum Script execution Time | ` 180 ` |
208- | ` PHP_UPLOAD_MAX_SIZE ` | Maximum Input Size for Uploads | ` 2G ` |
209- | ` PHP_WEBROOT ` | Used with ` CONTAINER_MODE=php-fpm ` | ` /www/html ` |
184+ | Parameter | Description | Default |
185+ | ------------------------------------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
186+ | ` PHP_APC_SHM_SIZE ` | APC Cache Memory size - ` 0 ` to disable | ` 128M ` |
187+ | ` PHP_APC_TTL ` | APC Time to live in seconds | ` 7200 ` |
188+ | ` PHP_FPM_HOST ` | Default PHP-FPM Host, seperate multiple by commas | ` 127.0.0.1:9000 ` - See above Container options |
189+ | ` PHP_FPM_LISTEN_PORT ` | PHP-FPM Listening Port - Ignored with above container options | ` 9000 ` |
190+ | ` PHP_FPM_MAX_CHILDREN ` | Maximum Children | ` 75 ` |
191+ | ` PHP_FPM_MAX_REQUESTS ` | How many requests before spawning new server | ` 500 ` |
192+ | ` PHP_FPM_MAX_SPARE_SERVERS ` | Maximum Spare Servers available | ` 3 ` |
193+ | ` PHP_FPM_MIN_SPARE_SERVERS ` | Minium Spare Servers avaialble | ` 1 ` |
194+ | ` PHP_FPM_OUTPUT_BUFFER_SIZE ` | Output buffer size in bytes | ` 0 ` |
195+ | ` PHP_FPM_POST_INIT_COMMAND ` | If you wish to execute a command before php-fpm executes, enter it here and seperate multiples by comma. | |
196+ | ` PHP_FPM_POST_INIT_SCRIPT ` | If you wish to execute a script before php-fpm executes, enter it here and seperate multiples by comma. | |
197+ | ` PHP_FPM_PROCESS_MANAGER ` | How to handle processes ` static ` , ` ondemand ` , ` dynamic ` | ` dynamic ` |
198+ | ` PHP_FPM_START_SERVERS ` | How many FPM servers to start initially | ` 2 ` |
199+ | ` PHP_LOG_ACCESS_FILE ` | PHP Access Logfile Name | ` access.log ` |
200+ | ` PHP_LOG_ERROR_FILE ` | Logfile name | ` error.log ` |
201+ | ` PHP_LOG_LEVEL ` | PHP Log Level ` alert ` ` error ` ` warning ` ` notice ` ` debug ` | ` notice ` |
202+ | ` PHP_LOG_ACCESS_FORMAT ` | Log format - ` default ` or ` json ` | ` default ` |
203+ | ` PHP_LOG_LIMIT ` | Characters to log | ` 2048 ` |
204+ | ` PHP_LOG_LOCATION ` | Log Location for PHP Logs | ` /www/logs/php-fpm ` |
205+ | ` PHP_MEMORY_LIMIT ` | How much memory should PHP use | ` 128M ` |
206+ | ` PHP_OPCACHE_INTERNED_STRINGS_BUFFER ` | OPCache interned strings buffer | ` 16 ` |
207+ | ` PHP_OPCACHE_MAX_ACCELERATED_FILES ` | OPCache Max accelerated files | ` 5413 ` |
208+ | ` PHP_OPCACHE_MEM_SIZE ` | OPCache Memory Size - Set ` 0 ` to disable or via other env vars | ` 128 ` |
209+ | ` PHP_OPCACHE_REVALIDATE_FREQ ` | OPCache revalidate frequency | ` 60 ` |
210+ | ` PHP_POST_MAX_SIZE ` | Maximum Input Size for POST | ` 2G ` |
211+ | ` PHP_TIMEOUT ` | Maximum Script execution Time | ` 180 ` |
212+ | ` PHP_UPLOAD_MAX_SIZE ` | Maximum Input Size for Uploads | ` 2G ` |
213+ | ` PHP_WEBROOT ` | Used with ` CONTAINER_MODE=php-fpm ` | ` /www/html ` |
210214
211215#### Enabling / Disabling Specific Extensions
212216
0 commit comments