mirror of
https://github.com/anikeen-com/yaac.git
synced 2026-03-16 15:16:20 +00:00
Fix some tiny typos in README.md
This commit is contained in:
@@ -128,15 +128,15 @@ be sure it works before asking Let's Encrypt to validate ownership.
|
|||||||
For a HTTP challenge test call:
|
For a HTTP challenge test call:
|
||||||
```php
|
```php
|
||||||
if (!$client->selfTest($authorization, Client::VALIDATION_HTTP)) {
|
if (!$client->selfTest($authorization, Client::VALIDATION_HTTP)) {
|
||||||
throw new \Exception('Count not verify ownership via HTTP');
|
throw new \Exception('Could not verify ownership via HTTP');
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
For a DNS test call:
|
For a DNS test call:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
if (!$client->selfTest($authorization, Client::VALIDATON_DNS)) {
|
if (!$client->selfTest($authorization, Client::VALIDATION_DNS)) {
|
||||||
throw new \Exception('Count not verify ownership via DNS');
|
throw new \Exception('Could not verify ownership via DNS');
|
||||||
}
|
}
|
||||||
sleep(30); // this further sleep is recommended, depending on your DNS provider, see below
|
sleep(30); // this further sleep is recommended, depending on your DNS provider, see below
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user