From 889fce65664fb5338e88bf2dcad23ee938daf17d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 Apr 2023 17:34:12 +0200 Subject: [PATCH] [bitnami/laravel] Release 10.1.1-debian-11-r3 (#31618) Signed-off-by: Bitnami Containers --- bitnami/laravel/10/debian-11/Dockerfile | 4 ++-- .../laravel/10/debian-11/rootfs/opt/bitnami/scripts/libphp.sh | 1 + .../10/debian-11/rootfs/opt/bitnami/scripts/php-env.sh | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bitnami/laravel/10/debian-11/Dockerfile b/bitnami/laravel/10/debian-11/Dockerfile index c59fbe6b555b..073108c87558 100644 --- a/bitnami/laravel/10/debian-11/Dockerfile +++ b/bitnami/laravel/10/debian-11/Dockerfile @@ -4,10 +4,10 @@ ARG TARGETARCH LABEL com.vmware.cp.artifact.flavor="sha256:109c7d51bd69bb6b3df71017440c1ea0699454f81fe188056c083f0b57c96ea6" \ org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \ - org.opencontainers.image.created="2023-04-24T20:17:49Z" \ + org.opencontainers.image.created="2023-04-25T15:11:58Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="10.1.1-debian-11-r2" \ + org.opencontainers.image.ref.name="10.1.1-debian-11-r3" \ org.opencontainers.image.title="laravel" \ org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.version="10.1.1" diff --git a/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/libphp.sh b/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/libphp.sh index a9bd719ef266..9226d0523aeb 100644 --- a/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/libphp.sh +++ b/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/libphp.sh @@ -87,6 +87,7 @@ php_set_runtime_config() { ! is_empty_value "$PHP_MEMORY_LIMIT" && info "Setting PHP memory_limit option" && php_conf_set memory_limit "$PHP_MEMORY_LIMIT" "$conf_file" ! is_empty_value "$PHP_POST_MAX_SIZE" && info "Setting PHP post_max_size option" && php_conf_set post_max_size "$PHP_POST_MAX_SIZE" "$conf_file" ! is_empty_value "$PHP_UPLOAD_MAX_FILESIZE" && info "Setting PHP upload_max_filesize option" && php_conf_set upload_max_filesize "$PHP_UPLOAD_MAX_FILESIZE" "$conf_file" + ! is_empty_value "$PHP_OUTPUT_BUFFERING" && info "Setting PHP output_buffering option" && php_conf_set output_buffering "$PHP_OUTPUT_BUFFERING" "$conf_file" true } diff --git a/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/php-env.sh b/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/php-env.sh index 4de618688f75..c67a87029398 100644 --- a/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/php-env.sh +++ b/bitnami/laravel/10/debian-11/rootfs/opt/bitnami/scripts/php-env.sh @@ -83,5 +83,6 @@ export PHP_MAX_INPUT_VARS="${PHP_MAX_INPUT_VARS:-}" export PHP_MEMORY_LIMIT="${PHP_MEMORY_LIMIT:-}" export PHP_POST_MAX_SIZE="${PHP_POST_MAX_SIZE:-}" export PHP_UPLOAD_MAX_FILESIZE="${PHP_UPLOAD_MAX_FILESIZE:-}" +export PHP_OUTPUT_BUFFERING="8196" # Custom environment variables may be defined below