mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-17 10:41:49 +01:00
fix: revert opcache memory consumption and strings buffer
Signed-off-by: adripo <26493496+adripo@users.noreply.github.com>
This commit is contained in:
parent
2d30be59ed
commit
e1ffc53e13
2 changed files with 4 additions and 4 deletions
|
@ -83,9 +83,9 @@ ENV PHP_MEMORY_LIMIT 512M
|
|||
ENV PHP_UPLOAD_LIMIT 512M
|
||||
RUN { \
|
||||
echo 'opcache.enable=1'; \
|
||||
echo 'opcache.interned_strings_buffer=64'; \
|
||||
echo 'opcache.interned_strings_buffer=32'; \
|
||||
echo 'opcache.max_accelerated_files=10000'; \
|
||||
echo 'opcache.memory_consumption=256'; \
|
||||
echo 'opcache.memory_consumption=128'; \
|
||||
echo 'opcache.save_comments=1'; \
|
||||
echo 'opcache.revalidate_freq=60'; \
|
||||
echo 'opcache.jit=1255'; \
|
||||
|
|
|
@ -95,9 +95,9 @@ RUN set -ex; \
|
|||
# see https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#enable-php-opcache
|
||||
RUN { \
|
||||
echo 'opcache.enable=1'; \
|
||||
echo 'opcache.interned_strings_buffer=64'; \
|
||||
echo 'opcache.interned_strings_buffer=32'; \
|
||||
echo 'opcache.max_accelerated_files=10000'; \
|
||||
echo 'opcache.memory_consumption=256'; \
|
||||
echo 'opcache.memory_consumption=128'; \
|
||||
echo 'opcache.save_comments=1'; \
|
||||
echo 'opcache.revalidate_freq=60'; \
|
||||
echo 'opcache.jit=1255'; \
|
||||
|
|
Loading…
Reference in a new issue