Skip to content

Commit 751cd0e

Browse files
infra: Remove redundant settings for opcache.
1 parent f728f6e commit 751cd0e

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

Dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,9 @@ RUN set -ex; \
4747
# set recommended PHP.ini settings
4848
# see https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/server_tuning.html#enable-php-opcache
4949
RUN { \
50-
echo 'opcache.enable=1'; \
5150
echo 'opcache.interned_strings_buffer=16'; \
52-
echo 'opcache.max_accelerated_files=10000'; \
53-
echo 'opcache.memory_consumption=128'; \
54-
echo 'opcache.save_comments=1'; \
55-
echo 'opcache.revalidate_freq=1'; \
51+
echo 'opcache.revalidate_freq=5'; \
5652
echo 'opcache.jit_buffer_size=100M'; \
57-
echo 'opcache.jit=1255'; \
5853
} > /usr/local/etc/php/conf.d/opcache-recommended.ini; \
5954
\
6055
echo 'apc.enable_cli=1' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini; \
@@ -80,7 +75,7 @@ RUN a2enmod headers rewrite remoteip ;\
8075
} > /etc/apache2/conf-available/remoteip.conf;\
8176
a2enconf remoteip
8277

83-
ENV NEXTCLOUD_VERSION 23.0.1
78+
ENV NEXTCLOUD_VERSION 23.0.2
8479

8580
RUN set -ex; \
8681
fetchDeps=" \

0 commit comments

Comments
 (0)