mirror of
https://github.com/nextcloud/docker.git
synced 2025-01-23 22:23:54 +01:00
Fix for Nextcloud opcache-complains
This commit is contained in:
parent
c5a8a8863b
commit
e7eb6af83c
2 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ ENV PHP_MEMORY_LIMIT 512M
|
|||
ENV PHP_UPLOAD_LIMIT 512M
|
||||
RUN { \
|
||||
echo 'opcache.enable=1'; \
|
||||
echo 'opcache.interned_strings_buffer=16'; \
|
||||
echo 'opcache.interned_strings_buffer=32'; \
|
||||
echo 'opcache.max_accelerated_files=10000'; \
|
||||
echo 'opcache.memory_consumption=128'; \
|
||||
echo 'opcache.save_comments=1'; \
|
||||
|
|
|
@ -94,7 +94,7 @@ 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=16'; \
|
||||
echo 'opcache.interned_strings_buffer=32'; \
|
||||
echo 'opcache.max_accelerated_files=10000'; \
|
||||
echo 'opcache.memory_consumption=128'; \
|
||||
echo 'opcache.save_comments=1'; \
|
||||
|
|
Loading…
Reference in a new issue