0
0
mirror of https://github.com/thegeeklab/certbot-dns-corenetworks.git synced 2024-06-02 16:59:40 +02:00

docs: switch to new certbot syntax

This commit is contained in:
Robert Kaussow 2021-01-02 00:09:37 +01:00
parent 9db6aed30b
commit 6195e2b10d
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61

View File

@ -22,15 +22,15 @@ To start using DNS authentication for the Core Networks DNS API, pass the follow
| Option | Description | | Option | Description |
| ----------------------------------------------------------------- | ------------------------------------------------ | | ----------------------------------------------------------------- | ------------------------------------------------ |
| `--authenticator certbot-dns-corenetworks:dns-corenetworks` | select the authenticator plugin (Required) | | `--authenticator dns-corenetworks` | select the authenticator plugin (Required) |
| `--certbot-dns-corenetworks:dns-corenetworks-credentials` | Hetzner DNS API credentials INI file. (Required) | | `--dns-corenetworks-credentials` | Hetzner DNS API credentials INI file. (Required) |
| `--certbot-dns-corenetworks:dns-corenetworks-propagation-seconds` | Seconds to wait for the TXT record to propagate | | `--dns-corenetworks-propagation-seconds` | Seconds to wait for the TXT record to propagate |
## Credentials ## Credentials
```ini ```ini
certbot_dns_corenetworks:dns_corenetworks_username = asaHB12r dns_corenetworks_username = asaHB12r
certbot_dns_corenetworks:dns_corenetworks_password = secure_passwor dns_corenetworks_password = secure_passwor
``` ```
## Examples ## Examples
@ -39,8 +39,8 @@ To acquire a certificate for `example.com`
```bash ```bash
certbot certonly \ certbot certonly \
--authenticator certbot-dns-corenetworks:dns-corenetworks \ --authenticator dns-corenetworks \
--certbot-dns-corenetworks:dns-corenetworks-credentials /path/to/my/credentials.ini \ --dns-corenetworks-credentials /path/to/my/credentials.ini \
-d example.com -d example.com
``` ```
@ -48,8 +48,8 @@ To acquire a certificate for `*.example.com`
```bash ```bash
certbot certonly \ certbot certonly \
--authenticator certbot-dns-corenetworks:dns-corenetworks \ --authenticator dns-corenetworks \
--certbot-dns-corenetworks:dns-corenetworks-credentials /path/to/my/credentials.ini \ --dns-corenetworks-credentials /path/to/my/credentials.ini \
-d '*.example.com' -d '*.example.com'
``` ```