We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ef0e9 commit 9318a36Copy full SHA for 9318a36
2 files changed
Dockerfile.php
@@ -161,5 +161,8 @@
161
> /app/site/web/.version.json && \
162
chown www-data:www-data /app/site/web/.version.json
163
164
+# used for health check endpoint
165
+RUN apk add --no-cache fcgi
166
+
167
ENTRYPOINT ["/app/scripts/build-scripts/docker-php-entrypoint.sh"]
168
CMD ["php-fpm"]
config/all/php/www.conf
@@ -9,4 +9,6 @@ pm.max_children = ${PM_MAX_CHILDREN}
9
pm.start_servers = ${PM_START_SERVERS}
10
pm.min_spare_servers = ${PM_MIN_SPARE_SERVERS}
11
pm.max_spare_servers = ${PM_MAX_SPARE_SERVERS}
12
-pm.max_requests = ${PM_MAX_REQUESTS}
+pm.max_requests = ${PM_MAX_REQUESTS}
13
+ping.path = /ping
14
+ping.response = pong
0 commit comments