nextcloud: disable opcache JIT temporarily (#8729)

This commit is contained in:
Simon L.
2026-09-21 11:13:48 +02:00
committed by GitHub
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -124,8 +124,10 @@ RUN set -ex; \
echo 'opcache.interned_strings_buffer=64'; \
echo 'opcache.save_comments=1'; \
echo 'opcache.revalidate_freq=60'; \
echo 'opcache.jit=1255'; \
echo 'opcache.jit_buffer_size=128M'; \
# JIT temporarily disabled, see https://github.com/nextcloud/docker/issues/2576
# and https://github.com/nextcloud/all-in-one/discussions/8711
echo 'opcache.jit=disable'; \
echo 'opcache.jit_buffer_size=0'; \
} > /usr/local/etc/php/conf.d/opcache-recommended.ini; \
\
{ \
+1 -1
View File
@@ -31,7 +31,7 @@ Included are:
- APCu as local cache
- Redis as distributed cache and for file locking
- Postgresql as database
- PHP-FPM with performance-optimized config (e.g. Opcache and JIT enabled by default)
- PHP-FPM with performance-optimized config (e.g. Opcache enabled by default)
- A+ security in Nextcloud security scan
- Ready to be used behind existing [Reverse proxies](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md)
- Can be used behind [Cloudflare Tunnel](https://github.com/nextcloud/all-in-one#how-to-run-nextcloud-behind-a-cloudflare-tunnel)