mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-10-31 19:41:45 +00:00
add ACME_HTTP_NO_REDIRECTS and _resethttp to make http requests not follow redirects
This commit is contained in:
parent
fe811ce32e
commit
effa7fd57d
16
acme.sh
16
acme.sh
@ -1722,6 +1722,14 @@ _mktemp() {
|
|||||||
_err "Can not create temp file."
|
_err "Can not create temp file."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#clear all the https envs to cause _inithttp() to run next time.
|
||||||
|
_resethttp() {
|
||||||
|
__HTTP_INITIALIZED=""
|
||||||
|
_ACME_CURL=""
|
||||||
|
_ACME_WGET=""
|
||||||
|
ACME_HTTP_NO_REDIRECTS=""
|
||||||
|
}
|
||||||
|
|
||||||
_inithttp() {
|
_inithttp() {
|
||||||
|
|
||||||
if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then
|
if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then
|
||||||
@ -1737,7 +1745,10 @@ _inithttp() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$_ACME_CURL" ] && _exists "curl"; then
|
if [ -z "$_ACME_CURL" ] && _exists "curl"; then
|
||||||
_ACME_CURL="curl -L --silent --dump-header $HTTP_HEADER "
|
_ACME_CURL="curl --silent --dump-header $HTTP_HEADER "
|
||||||
|
if [ -z "$ACME_HTTP_NO_REDIRECTS" ]; then
|
||||||
|
_ACME_CURL="$_ACME_CURL -L "
|
||||||
|
fi
|
||||||
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
|
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
|
||||||
_CURL_DUMP="$(_mktemp)"
|
_CURL_DUMP="$(_mktemp)"
|
||||||
_ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP "
|
_ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP "
|
||||||
@ -1756,6 +1767,9 @@ _inithttp() {
|
|||||||
|
|
||||||
if [ -z "$_ACME_WGET" ] && _exists "wget"; then
|
if [ -z "$_ACME_WGET" ] && _exists "wget"; then
|
||||||
_ACME_WGET="wget -q"
|
_ACME_WGET="wget -q"
|
||||||
|
if [ "$ACME_HTTP_NO_REDIRECTS" ]; then
|
||||||
|
_ACME_WGET="$_ACME_WGET --max-redirect 0 "
|
||||||
|
fi
|
||||||
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
|
if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
|
||||||
_ACME_WGET="$_ACME_WGET -d "
|
_ACME_WGET="$_ACME_WGET -d "
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user