mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-01-12 16:14:45 +08:00
[ACME] verify_html should accept 3** and 2**
This commit is contained in:
parent
96949c68a8
commit
36ad9dbf78
@ -121,7 +121,7 @@ verify_challenge_path(){
|
||||
# verify_challenge_path URL 4|6
|
||||
RAND_FILE=${RANDOM}${RANDOM}${RANDOM}
|
||||
touch /var/www/acme/${RAND_FILE}
|
||||
if [[ "$(curl -${2} http://${1}/.well-known/acme-challenge/${RAND_FILE} --write-out %{http_code} --silent --output /dev/null)" == "200" ]]; then
|
||||
if [[ "$(curl -${2} http://${1}/.well-known/acme-challenge/${RAND_FILE} --write-out %{http_code} --silent --output /dev/null)" =~ ^(2|3) ]]; then
|
||||
rm /var/www/acme/${RAND_FILE}
|
||||
return 0
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user