mirror of
https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion
synced 2024-11-23 09:12:15 +01:00
53 lines
2.2 KiB
Bash
Executable File
53 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
## Test for OCSP Must-Staple extension.
|
|
|
|
if [[ -z $GITHUB_ACTIONS ]]; then
|
|
le_container_name="$(basename "${0%/*}")_$(date "+%Y-%m-%d_%H.%M.%S")"
|
|
else
|
|
le_container_name="$(basename "${0%/*}")"
|
|
fi
|
|
run_le_container "${1:?}" "$le_container_name"
|
|
|
|
# Create the $domains array from comma separated domains in TEST_DOMAINS.
|
|
IFS=',' read -r -a domains <<< "$TEST_DOMAINS"
|
|
|
|
# Cleanup function with EXIT trap
|
|
function cleanup {
|
|
# Remove any remaining Nginx container(s) silently.
|
|
for domain in "${domains[0]}" "${domains[1]}"; do
|
|
docker rm --force "$domain" &> /dev/null
|
|
done
|
|
# Cleanup the files created by this run of the test to avoid foiling following test(s).
|
|
docker exec "$le_container_name" /app/cleanup_test_artifacts
|
|
# Stop the LE container
|
|
docker stop "$le_container_name" > /dev/null
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
# Run an nginx container with ACME_OCSP=true
|
|
run_nginx_container --hosts "${domains[0]}" --cli-args "--env ACME_OCSP=true"
|
|
|
|
# Run an second nginx container without ACME_OCSP=true
|
|
run_nginx_container --hosts "${domains[1]}"
|
|
|
|
# Wait for the symlink to the ${domains[0]} certificate
|
|
wait_for_symlink "${domains[0]}" "$le_container_name"
|
|
|
|
# Check if the OCSP Must-Staple extension is present in the ${domains[0]} certificate
|
|
if docker exec "$le_container_name" openssl x509 -in "/etc/nginx/certs/${domains[0]}/cert.pem" -text -noout | grep -q -E '1\.3\.6\.1\.5\.5\.7\.1\.24|status_request'; then
|
|
[[ "${DRY_RUN:-}" == 1 ]] && echo "The OCSP Must-Staple extension is present on the ${domains[0]} certificate."
|
|
else
|
|
echo "The OCSP Must-Staple extension is absent from the ${domains[0]} certificate."
|
|
fi
|
|
|
|
# Wait for the symlink to the ${domains[1]} certificate
|
|
wait_for_symlink "${domains[1]}" "$le_container_name"
|
|
|
|
# Check if the OCSP Must-Staple extension is absent from the ${domains[1]} certificate
|
|
if docker exec "$le_container_name" openssl x509 -in "/etc/nginx/certs/${domains[1]}/cert.pem" -text -noout | grep -q -E '1\.3\.6\.1\.5\.5\.7\.1\.24|status_request'; then
|
|
echo "The OCSP Must-Staple extension is present on the ${domains[1]} certificate."
|
|
elif [[ "${DRY_RUN:-}" == 1 ]]; then
|
|
echo "The OCSP Must-Staple extension is absent from the ${domains[1]} certificate."
|
|
fi
|