Update README.md
6d16dbd19fba9142970ea66a4a8335b9286c871f
1 files changed
README.md
diff --git a/README.md b/README.md
index 73f7457..700369c 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,9 @@ Call LetsEncryptAsync to make the challenge record in DNS.
The challenge can be obtained by the https://github.com/fszlin/certes project.
```C#
+var acme = new AcmeContext(WellKnownServers.LetsEncryptStagingV2);
+var account = await acme.NewAccount("admin@example.com", true);
+
var order = await acme.NewOrder(new[] { "*.example.com" });
var authz = (await order.Authorizations()).First();
@@ -32,12 +35,14 @@ await api.LoginAsync(
var result = await api.LetsEncryptAsync("example.com", dnsTxt);
```
-Now the DNS at Vimexx is setup to make the LetsEncryt validate call.
+Now the DNS at Vimexx is setup to make the LetsEncryt DNS validation call.
```C#
await dnsChallenge.Validate();
```
+Sometimes a few seconds has to be waited and retry for validation is successfull (loop it).
+
Download the certificate once validation is done (put in here your own credentials please)
```C#