php8-fpm/README.md

54 lines
935 B
Markdown
Raw Normal View History

2021-06-20 08:33:37 +00:00
[php-fpm](https://php-fpm.org/) with PHP8.
2016-11-01 15:20:39 +00:00
# Environment Variables
## FPMUSER
- default: nobody
The user which runs the fpm process.
## FPMGROUP
- default: nobody
The group which runs the fpm process.
## MAX_UPLOAD_SIZE
- default: 512M
Maximal upload size.
2017-02-16 14:30:19 +00:00
## PHP_MEMORY_LIMIT
- default: 128M
Maximum amount of memory that a script is allowed to allocate.
2017-05-18 08:39:00 +00:00
## PHP_MAX_EXECUTION_TIME
2017-06-15 11:08:29 +00:00
- default: 30
2017-05-18 08:39:00 +00:00
Execution time limit for php scripts in seconds.
2017-06-15 11:08:29 +00:00
## PHP_MAX_CHILDREN
- default: 5
Value of `pm.max_children`.
2017-10-10 11:17:21 +00:00
## PHP_START_SERVERS
- default: 2
Value of `pm.start_servers`
2017-10-10 11:26:52 +00:00
## PHP_MAX_SPARE_SERVERS
- default: Value of PHP_START_SERVERS or 3
Value of `pm.max_spare_servers`
2016-11-01 15:20:39 +00:00
## PHP_ADMIN_VALUES
Comma seperated list of php admin values.
Each element is a key-value pair, seperated by an equal sign.
## PHP_ADMIN_FLAGS
Comma seperated list of php admin flags.
Each element is a key-value pair, seperated by an equal sign.