diff --git a/Dockerfile b/Dockerfile index 31fac11..443b4a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -77,10 +77,11 @@ RUN \ -e 's/max_execution_time.*=.*30/max_execution_time=120/g' \ -e 's/upload_max_filesize.*=.*2M/upload_max_filesize=1024M/g' \ -e 's/post_max_size.*=.*8M/post_max_size=1024M/g' \ - /etc/php8/php.ini && \ + -e 's/output_buffering.*=.*/output_buffering=0/g' \ + /etc/php8/php.ini && \ sed -i \ '/opcache.enable=1/a opcache.enable_cli=1' \ - /etc/php8/php.ini && \ + /etc/php8/php.ini && \ echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php8/php-fpm.conf && \ echo "**** set version tag ****" && \ if [ -z ${NEXTCLOUD_RELEASE+x} ]; then \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3718ca9..e854eed 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -77,10 +77,11 @@ RUN \ -e 's/max_execution_time.*=.*30/max_execution_time=120/g' \ -e 's/upload_max_filesize.*=.*2M/upload_max_filesize=1024M/g' \ -e 's/post_max_size.*=.*8M/post_max_size=1024M/g' \ - /etc/php8/php.ini && \ + -e 's/output_buffering.*=.*/output_buffering=0/g' \ + /etc/php8/php.ini && \ sed -i \ '/opcache.enable=1/a opcache.enable_cli=1' \ - /etc/php8/php.ini && \ + /etc/php8/php.ini && \ echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php8/php-fpm.conf && \ echo "**** set version tag ****" && \ if [ -z ${NEXTCLOUD_RELEASE+x} ]; then \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a9d6efe..243d451 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -77,10 +77,11 @@ RUN \ -e 's/max_execution_time.*=.*30/max_execution_time=120/g' \ -e 's/upload_max_filesize.*=.*2M/upload_max_filesize=1024M/g' \ -e 's/post_max_size.*=.*8M/post_max_size=1024M/g' \ - /etc/php8/php.ini && \ + -e 's/output_buffering.*=.*/output_buffering=0/g' \ + /etc/php8/php.ini && \ sed -i \ '/opcache.enable=1/a opcache.enable_cli=1' \ - /etc/php8/php.ini && \ + /etc/php8/php.ini && \ echo "env[PATH] = /usr/local/bin:/usr/bin:/bin" >> /etc/php8/php-fpm.conf && \ echo "**** set version tag ****" && \ if [ -z ${NEXTCLOUD_RELEASE+x} ]; then \ diff --git a/README.md b/README.md index df3cb6f..0b067b2 100644 --- a/README.md +++ b/README.md @@ -256,7 +256,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **20.08.22:** - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)). +* **10.10.22:** - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)). +* **30.09.22:** - Disabled `output_buffering` as per [nextcloud docs](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html * **21.05.22:** - Update version check endpoint. * **28.04.22:** - Increase OPCache interned strings buffered setting to 16. * **14.04.22:** - Nginx default site config updated for v23 (existing users should delete `/config/nginx/site-confs/default` and restart the container). Fix LDAP connection. diff --git a/package_versions.txt b/package_versions.txt index 844146e..0df3278 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -19,8 +19,8 @@ cairo-gobject-1.16.0-r5 coreutils-8.32-r2 cups-libs-2.3.3-r3 curl-7.79.1-r3 -dbus-libs-1.12.20-r2 -expat-2.4.7-r0 +dbus-libs-1.12.24-r0 +expat-2.4.9-r0 ffmpeg-4.4.1-r0 ffmpeg-libs-4.4.1-r0 fontconfig-2.13.1-r4 @@ -114,7 +114,7 @@ libxt-1.2.1-r0 libzip-1.7.3-r2 linux-pam-1.5.1-r1 lmdb-0.9.29-r0 -logrotate-3.18.1-r3 +logrotate-3.18.1-r4 lz4-libs-1.9.3-r1 musl-1.2.2-r3 musl-utils-1.2.2-r3 @@ -199,7 +199,7 @@ talloc-2.3.2-r1 tar-1.34-r0 tdb-libs-1.4.3-r1 tevent-0.10.2-r1 -tiff-4.3.0-r0 +tiff-4.4.0-r0 tzdata-2022c-r0 unzip-6.0-r9 utmps-0.1.0.2-r0 diff --git a/readme-vars.yml b/readme-vars.yml index 554cbc8..35fbe34 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -77,7 +77,8 @@ app_setup_block: | # changelog changelogs: - - { date: "20.08.22:", desc: "Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base))." } + - { date: "10.10.22:", desc: "Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base))." } + - { date: "30.09.22:", desc: "Disabled `output_buffering` as per [nextcloud docs](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html" } - { date: "21.05.22:", desc: "Update version check endpoint." } - { date: "28.04.22:", desc: "Increase OPCache interned strings buffered setting to 16." } - { date: "14.04.22:", desc: "Nginx default site config updated for v23 (existing users should delete `/config/nginx/site-confs/default` and restart the container). Fix LDAP connection." }