[bitnami/drupal-nginx] Release 9.5.9-debian-11-r4 (#33998)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-05-15 22:07:29 +01:00 committed by GitHub
parent abf5a1b465
commit 8235bd9561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -3,10 +3,10 @@ FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-05-12T18:15:03Z" \
org.opencontainers.image.created="2023-05-15T20:06:32Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="9.5.9-debian-11-r3" \
org.opencontainers.image.ref.name="9.5.9-debian-11-r4" \
org.opencontainers.image.title="drupal-nginx" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="9.5.9"

View File

@ -643,8 +643,8 @@ nginx_generate_sample_certs() {
local certs_dir="${NGINX_CONF_DIR}/bitnami/certs"
if ! is_boolean_yes "$NGINX_SKIP_SAMPLE_CERTS" && [[ ! -f "${certs_dir}/server.crt" ]]; then
ensure_dir_exists "$certs_dir"
if is_file_writable "${certs_dir}/server.crt"; then
# Check certificates directory exists and is writable
if [[ -d "$certs_dir" && -w "$certs_dir" ]]; then
SSL_KEY_FILE="${certs_dir}/server.key"
SSL_CERT_FILE="${certs_dir}/server.crt"
SSL_CSR_FILE="${certs_dir}/server.csr"
@ -656,7 +656,7 @@ nginx_generate_sample_certs() {
openssl x509 -req -sha256 -in "$SSL_CSR_FILE" -signkey "$SSL_KEY_FILE" -out "$SSL_CERT_FILE" -days 1825 -extfile <(echo -n "$SSL_EXT")
rm -f "$SSL_CSR_FILE"
else
warn "The certificates directories '${certs_dir}' is not writable, skipping sample HTTPS certificates generation"
warn "The certificates directories '${certs_dir}' does not exist or is not writable, skipping sample HTTPS certificates generation"
fi
fi
}