We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dc0d17 commit d49f1efCopy full SHA for d49f1ef
1 file changed
Dockerfile-debian.template
@@ -19,6 +19,7 @@ RUN set -ex; \
19
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html
20
ENV PHP_MEMORY_LIMIT 512M
21
ENV PHP_UPLOAD_LIMIT 512M
22
+ENV PHP_PM_MAX_CHILDREN 16
23
RUN set -ex; \
24
\
25
savedAptMark="$(apt-mark showmanual)"; \
@@ -106,6 +107,7 @@ RUN { \
106
107
echo 'memory_limit=${PHP_MEMORY_LIMIT}'; \
108
echo 'upload_max_filesize=${PHP_UPLOAD_LIMIT}'; \
109
echo 'post_max_size=${PHP_UPLOAD_LIMIT}'; \
110
+ echo 'pm.max_children = ${PHP_PM_MAX_CHILDREN}'; \
111
} > "${PHP_INI_DIR}/conf.d/nextcloud.ini"; \
112
113
mkdir /var/www/data; \
0 commit comments