Compare commits

...

5 commits

Author SHA1 Message Date
0c2eea1705 Merge pull request 'update to 24.0.4' (#18) from 24.0.4 into master
Reviewed-on: #18
2022-09-03 16:35:56 +02:00
a162f8fb56 update nextcloud to 24.0.4 2022-09-03 16:35:30 +02:00
1787528064 update nextcloud to 24.0.3 2022-09-03 16:35:30 +02:00
73c6503499 update php.ini: increase limits to match recommendations
increase interned_strings_buffer as notified by the admin panel and
increase the apc cache revalidation time as revalidating the php files
isn't required that often (see https://docs.nextcloud.com/server/24/admin_manual/installation/server_tuning.html#enable-php-opcache)
2022-09-03 16:35:30 +02:00
c70ea09e4a bump nextcloud version to 24.0.2 2022-09-03 16:35:30 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
FROM php:8.0-apache FROM php:8.0-apache
ENV NEXTCLOUD_VERSION 24.0.1 ENV NEXTCLOUD_VERSION 24.0.4
RUN \ RUN \
apt-get update && \ apt-get update && \

View file

@ -1,10 +1,10 @@
opcache.enable=1 opcache.enable=1
opcache.enable_cli=1 opcache.enable_cli=1
opcache.interned_strings_buffer=8 opcache.interned_strings_buffer=16
opcache.max_accelerated_files=10000 opcache.max_accelerated_files=10000
opcache.memory_consumption=128 opcache.memory_consumption=128
opcache.save_comments=1 opcache.save_comments=1
opcache.revalidate_freq=1 opcache.revalidate_freq=60
memory_limit = 1G memory_limit = 1G
apc.enable_cli=1 apc.enable_cli=1