Skip to content

Commit

Permalink
Add http to request URL
Browse files Browse the repository at this point in the history
  • Loading branch information
John Zwarthoed committed Apr 12, 2021
1 parent 123143c commit e79647c
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 e79647c

Please sign in to comment.