Browse Source

Fixes 374

pull/452/head
Damir Mitrovic 6 years ago
parent
commit
c3fe2d5214
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      getssl

+ 2
- 2
getssl View File

@ -1410,9 +1410,9 @@ send_signed_request() { # Sends a request to the ACME server, signed with your p
loop_limit=5
while [[ "$code" -eq 500 ]]; do
if [[ "$needbase64" ]] ; then
response=$($CURL -X POST --data "$body" "$url" | urlbase64)
response=$($CURL -X POST -H "Content-Type: application/jose+json" --data "$body" "$url" | urlbase64)
else
response=$($CURL -X POST --data "$body" "$url")
response=$($CURL -X POST -H "Content-Type: application/jose+json" --data "$body" "$url")
fi
responseHeaders=$(cat "$CURL_HEADER")


Loading…
Cancel
Save