From 0b3f20c25a19ad1ad794d53377e5c6fbe3bd824a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 30 Aug 2024 10:10:10 +0200 Subject: [PATCH] [bitnami/openresty] Release openresty-1.25.3-2-debian-12-r4 (#71474) Signed-off-by: Bitnami Bot --- bitnami/openresty/1.25/debian-12/Dockerfile | 4 ++-- .../rootfs/opt/bitnami/scripts/openresty/postunpack.sh | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bitnami/openresty/1.25/debian-12/Dockerfile b/bitnami/openresty/1.25/debian-12/Dockerfile index ded277372a8b..f0d9033af921 100644 --- a/bitnami/openresty/1.25/debian-12/Dockerfile +++ b/bitnami/openresty/1.25/debian-12/Dockerfile @@ -7,11 +7,11 @@ ARG TARGETARCH LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \ org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \ - org.opencontainers.image.created="2024-08-24T07:19:51Z" \ + org.opencontainers.image.created="2024-08-30T07:48:22Z" \ org.opencontainers.image.description="Application packaged by Broadcom, Inc." \ org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/openresty/README.md" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="1.25.3-2-debian-12-r3" \ + org.opencontainers.image.ref.name="1.25.3-2-debian-12-r4" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/openresty" \ org.opencontainers.image.title="openresty" \ org.opencontainers.image.vendor="Broadcom, Inc." \ diff --git a/bitnami/openresty/1.25/debian-12/rootfs/opt/bitnami/scripts/openresty/postunpack.sh b/bitnami/openresty/1.25/debian-12/rootfs/opt/bitnami/scripts/openresty/postunpack.sh index 36e43f0936ff..bfd18ae10a9f 100755 --- a/bitnami/openresty/1.25/debian-12/rootfs/opt/bitnami/scripts/openresty/postunpack.sh +++ b/bitnami/openresty/1.25/debian-12/rootfs/opt/bitnami/scripts/openresty/postunpack.sh @@ -38,6 +38,7 @@ openresty_patch_httpoxy_vulnerability() { declare -a writable_dirs=( "$OPENRESTY_VOLUME_DIR" "$OPENRESTY_CONF_DIR" + "${OPENRESTY_BASE_DIR}/nginx" "$OPENRESTY_SERVER_BLOCKS_DIR" "${OPENRESTY_CONF_DIR}/bitnami" "${OPENRESTY_CONF_DIR}/bitnami/certs" @@ -59,8 +60,8 @@ openresty_patch_httpoxy_vulnerability openresty_configure_port "$OPENRESTY_DEFAULT_HTTP_PORT_NUMBER" # Users can mount their html sites at /app -mv "${OPENRESTY_BASE_DIR}/nginx/html" /app -ln -sf /app "${OPENRESTY_BASE_DIR}/nginx/html" +mv "$OPENRESTY_HTDOCS_DIR" /app +ln -sf /app "$OPENRESTY_HTDOCS_DIR" # Users can mount their certificates at /certs mv "${OPENRESTY_CONF_DIR}/bitnami/certs" /certs