Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
51b4a9e3
Commit
51b4a9e3
authored
Sep 24, 2019
by
neilpang
Browse files
fix HEAD request against the new LE CDN.
wget is fixed
parent
5723fd11
Changes
1
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
51b4a9e3
...
...
@@ -1727,6 +1727,9 @@ _post() {
if
[
"
$HTTPS_INSECURE
"
]
;
then
_WGET
=
"
$_WGET
--no-check-certificate "
fi
if
[
"
$httpmethod
"
=
"HEAD"
]
;
then
_WGET
=
"
$_WGET
--read-timeout=3.0 --tries=2 "
fi
_debug
"_WGET"
"
$_WGET
"
if
[
"
$needbase64
"
]
;
then
if
[
"
$httpmethod
"
=
"POST"
]
;
then
...
...
@@ -1749,6 +1752,12 @@ _post() {
else
response
=
"
$(
$_WGET
-S
-O
-
--user-agent
=
"
$USER_AGENT
"
--header
"
$_H5
"
--header
"
$_H4
"
--header
"
$_H3
"
--header
"
$_H2
"
--header
"
$_H1
"
--post-data
=
"
$body
"
"
$_post_url
"
2>
"
$HTTP_HEADER
"
)
"
fi
elif
[
"
$httpmethod
"
=
"HEAD"
]
;
then
if
[
"
$_postContentType
"
]
;
then
response
=
"
$(
$_WGET
--spider
-S
-O
-
--user-agent
=
"
$USER_AGENT
"
--header
"
$_H5
"
--header
"
$_H4
"
--header
"
$_H3
"
--header
"
$_H2
"
--header
"
$_H1
"
--header
"Content-Type:
$_postContentType
"
--post-data
=
"
$body
"
"
$_post_url
"
2>
"
$HTTP_HEADER
"
)
"
else
response
=
"
$(
$_WGET
--spider
-S
-O
-
--user-agent
=
"
$USER_AGENT
"
--header
"
$_H5
"
--header
"
$_H4
"
--header
"
$_H3
"
--header
"
$_H2
"
--header
"
$_H1
"
--post-data
=
"
$body
"
"
$_post_url
"
2>
"
$HTTP_HEADER
"
)
"
fi
else
if
[
"
$_postContentType
"
]
;
then
response
=
"
$(
$_WGET
-S
-O
-
--user-agent
=
"
$USER_AGENT
"
--header
"
$_H5
"
--header
"
$_H4
"
--header
"
$_H3
"
--header
"
$_H2
"
--header
"
$_H1
"
--header
"Content-Type:
$_postContentType
"
--method
$httpmethod
--body-data
=
"
$body
"
"
$_post_url
"
2>
"
$HTTP_HEADER
"
)
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment