@@ -15,10 +15,10 @@ Description
15
15
16
16
PHP 7.2 available as container is a base platform for
17
17
building and running various PHP 7.2 applications and frameworks.
18
- PHP is an HTML-embedded scripting language. PHP attempts to make it easy for developers
19
- to write dynamically generated web pages. PHP also offers built-in database integration
20
- for several commercial and non-commercial database management systems, so writing
21
- a database-enabled webpage with PHP is fairly simple. The most common use of PHP coding
18
+ PHP is an HTML-embedded scripting language. PHP attempts to make it easy for developers
19
+ to write dynamically generated web pages. PHP also offers built-in database integration
20
+ for several commercial and non-commercial database management systems, so writing
21
+ a database-enabled webpage with PHP is fairly simple. The most common use of PHP coding
22
22
is probably as a replacement for CGI scripts.
23
23
24
24
This container image includes an npm utility, so users can use it to install JavaScript
@@ -191,7 +191,7 @@ The following environment variables set their equivalent property value in the p
191
191
* Default: /tmp/sessions
192
192
* ** SESSION_COOKIE_DOMAIN**
193
193
* The domain for which the cookie is valid.
194
- * Default:
194
+ * Default:
195
195
* ** SESSION_COOKIE_HTTPONLY**
196
196
* Whether or not to add the httpOnly flag to the cookie
197
197
* Default: 0
@@ -214,7 +214,7 @@ The following environment variables set their equivalent property value in the o
214
214
* Default: 2
215
215
* ** OPCACHE_MAX_FILES**
216
216
* The maximum number of keys (scripts) in the OPcache hash table. Only numbers between 200 and 1000000 are allowed.
217
- * Default: 4000
217
+ * Default: 4000
218
218
219
219
You can also override the entire directory used to load the PHP configuration by setting:
220
220
* ** PHPRC**
@@ -238,6 +238,17 @@ yourself:
238
238
* ` MaxRequestWorkers ` was called ` MaxClients ` before version httpd 2.3.13.
239
239
* Default: 256 (this is automatically tuned by setting Cgroup limits for the container using this formula:
240
240
` TOTAL_MEMORY / 15MB ` . The 15MB is average size of a single httpd process.
241
+ * ** HTTPD_MAX_REQUESTS_PER_CHILD**
242
+ * The [ MaxRequestsPerChild] ( http://httpd.apache.org/docs/current/mod/mpm_common.html#maxconnectionsperchild )
243
+ directive sets the limit on the number of connections that an individual child server process will handle.
244
+ After ` MaxRequestsPerChild ` connections, the child process will die. If ` MaxRequestsPerChild ` is 0, then the process will never expire.
245
+ * Setting ` MaxRequestsPerChild ` to a non-zero value limits the amount of memory that a process can consume by (accidental) memory leakage.
246
+ * ` MaxRequestsPerChild ` is called ` MaxConnectionsPerChild ` in Apache HTTP 2.3.9 and later.
247
+ * Default: 4000
248
+ * ** HTTPD_MAX_KEEPALIVE_REQUESTS**
249
+ * The [ MaxKeepAliveRequests] ( http://httpd.apache.org/docs/current/mod/core.html#maxkeepaliverequests )
250
+ directive limits the number of requests allowed per connection when ` KeepAlive ` is on. If it is set to 0, unlimited requests will be allowed.
251
+ * Default: 100
241
252
242
253
You can use a custom composer repository mirror URL to download packages instead of the default 'packagist.org':
243
254
0 commit comments