Skip to content

Commit

Permalink
Merge pull request #11 from Zwartpet/http-challenge
Browse files Browse the repository at this point in the history
Add http to request URL
  • Loading branch information
Zwartpet authored Apr 12, 2021
2 parents 123143c + e79647c commit 69cf4ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LEConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private function getNewNonce()
*/
public function checkHTTPChallenge($domain, $token, $keyAuthorization)
{
$requestURL = $domain . '/.well-known/acme-challenge/' . $token;
$requestURL = 'http://' . $domain . '/.well-known/acme-challenge/' . $token;

$request = new Request('GET', $requestURL);

Expand Down

0 comments on commit 69cf4ed

Please sign in to comment.