-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Loopia DNS challenge (#3821)
* Add support for Loopia DNS challenge * Bump letsencrypt to 5.3.0 instead of 5.2.4 * Update DOCS.md for Loopia DNS challenge * Update DOCS.md for Loopia DNS challenge Adhere to coderabbits suggestion * Use patch version to add new DNS support --------- Co-authored-by: Stefan Agner <[email protected]>
- Loading branch information
Showing
7 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 5.2.4 | ||
|
||
- Add Loopia DNS support | ||
|
||
## 5.2.3 | ||
|
||
- Fix syntax error in run script | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,7 @@ dns-infomaniak | |
dns-ionos | ||
dns-joker | ||
dns-linode | ||
dns-loopia | ||
dns-luadns | ||
dns-njalla | ||
dns-noris | ||
|
@@ -118,6 +119,8 @@ joker_password: '' | |
joker_domain: '' | ||
linode_key: '' | ||
linode_version: '' | ||
loopia_username: '' | ||
loopia_password: '' | ||
luadns_email: '' | ||
luadns_token: '' | ||
njalla_token: '' | ||
|
@@ -567,6 +570,33 @@ To use this addon with Linode DNS, first [create a new API/access key](https://w | |
|
||
</details> | ||
|
||
<details> | ||
<summary>Loopia</summary> | ||
|
||
To use this addon with Loopia DNS, first [create a new API user](https://customerzone.loopia.com/api/), with the following minimum required permissions: | ||
|
||
- `addZoneRecord` - Required to create DNS records | ||
- `getZoneRecords` - Required to verify DNS records | ||
- `removeZoneRecord` - Required to clean up DNS records | ||
- `removeSubdomain` - Required for complete cleanup | ||
|
||
Example configuration in YAML edit mode: | ||
|
||
```yaml | ||
email: [email protected] | ||
domains: | ||
- ha.yourdomain.com | ||
certfile: fullchain.pem | ||
keyfile: privkey.pem | ||
challenge: dns | ||
dns: | ||
provider: dns-loopia | ||
loopia_username: example@loopiaapi | ||
loopia_password: supersecretpasswordhere | ||
``` | ||
|
||
</details> | ||
|
||
<details> | ||
<summary>DirectAdmin</summary> | ||
|
||
|
@@ -1075,6 +1105,7 @@ dns-hetzner | |
dns-infomaniak | ||
dns-ionos | ||
dns-linode | ||
dns-loopia | ||
dns-luadns | ||
dns-njalla | ||
dns-noris | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters