Skip to content

Commit

Permalink
Correct readme instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mintopia committed Oct 30, 2020
1 parent 3d7bbd6 commit 1df8cd1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ The plugin requires an API key and secret key for the Constellix DNS API. The ke

These will need to be added to a file, eg. `constellix.ini` in the following format:

```certbot_dns_constellix:constellix_dns_apikey=5fb4e76f-ac91-43e5-f982458bc595
constellix_dns_apikey=5fb4e76f-ac91-43e5-f982458bc595
constellix_dns_secretkey=47d99fd0-32e7-4e07-85b46d08e70b
constellix_dns_endpoint=https://api.dns.constellix.com/v1
```
dns_constellix_apikey=5fb4e76f-ac91-43e5-f982458bc595
dns_constellix_secretkey=47d99fd0-32e7-4e07-85b46d08e70b
dns_constellix_endpoint=https://api.dns.constellix.com/v1
```

#### Caution
Expand All @@ -44,7 +44,7 @@ Once the plugin is installed and configured it can be used by specifying the plu

```
certbot certonly \
--dns-constellix \
--authenticator=dns-constellix \
--dns-constellix-credentials=~./constellix.ini \
-d example.com
```
Expand All @@ -71,10 +71,10 @@ The plugin requires an API key and secret key for the Constellix DNS API. The ke

These will need to be added to a file, eg. `constellix.ini` in the following format:

```certbot_dns_constellix:constellix_dns_apikey=5fb4e76f-ac91-43e5-f982458bc595
certbot-dns-constellix:constellix_dns_apikey=5fb4e76f-ac91-43e5-f982458bc595
certbot-dns-constellix:constellix_dns_secretkey=47d99fd0-32e7-4e07-85b46d08e70b
certbot-dns-constellix:constellix_dns_endpoint=https://api.dns.constellix.com/v1
```
certbot-dns-constellix:dns_constellix_apikey=5fb4e76f-ac91-43e5-f982458bc595
certbot-dns-constellix:dns_constellix_secretkey=47d99fd0-32e7-4e07-85b46d08e70b
certbot-dns-constellix:dns_constellix_endpoint=https://api.dns.constellix.com/v1
```

The extra `certbot-dns-constellix:` is required due to how older versions of Certbot load plugins.
Expand All @@ -89,7 +89,7 @@ Once the plugin is installed and configured it can be used by specifying the plu

```
certbot certonly \
--certbot-dns-constellix:dns-constellix \
--authenticator=certbot-dns-constellix:dns-constellix \
--certbot-dns-constellix:dns-constellix-credentials=~./constellix.ini \
-d example.com
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
from setuptools import find_packages

version = "0.2.0"
version = "0.2.1"

install_requires = [
"acme>=0.29.0",
Expand Down

0 comments on commit 1df8cd1

Please sign in to comment.