We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef57820 commit 98eb01eCopy full SHA for 98eb01e
app/entrypoint.sh
@@ -58,6 +58,12 @@ source /app/functions.sh
58
[[ $DEBUG == true ]] && set -x
59
60
if [[ "$*" == "/bin/bash /app/start.sh" ]]; then
61
+ acmev2_re='https://acme-.*v02\.api\.letsencrypt\.org/directory'
62
+ if [[ "${ACME_CA_URI:-}" =~ $acmev2_re ]]; then
63
+ echo "Error: ACME v2 API is not yet supported by simp_le."
64
+ echo "See https://github.com/zenhack/simp_le/issues/101"
65
+ exit 1
66
+ fi
67
check_docker_socket
68
if [[ -z "$(get_self_cid)" ]]; then
69
echo "Error: can't get my container ID !" >&2
0 commit comments