dnsapi: fix Structured DNS Info

Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
pull/6434/head
Sergey Ponomarev 2025-07-06 01:43:16 +03:00
parent 85ec6343ff
commit 8113711b7a
4 changed files with 21 additions and 26 deletions

View File

@ -7,7 +7,7 @@ Options:
BEGET_User API user BEGET_User API user
BEGET_Password API password BEGET_Password API password
Issues: github.com/acmesh-official/acme.sh/issues/6200 Issues: github.com/acmesh-official/acme.sh/issues/6200
Author: ARNik arnik@arnik.ru Author: ARNik <arnik@arnik.ru>
' '
Beget_Api="https://api.beget.com/api" Beget_Api="https://api.beget.com/api"

View File

@ -5,6 +5,7 @@ Site: dns.he.net
Docs: github.com/acmesh-official/acme.sh/wiki/dnsapi2#dns_he_ddns Docs: github.com/acmesh-official/acme.sh/wiki/dnsapi2#dns_he_ddns
Options: Options:
HE_DDNS_KEY The DDNS key HE_DDNS_KEY The DDNS key
Issues: https://github.com/acmesh-official/acme.sh/issues/5238
Author: Markku Leiniö Author: Markku Leiniö
' '

View File

@ -1,27 +1,21 @@
#!/usr/bin/env sh #!/usr/bin/env sh
# shellcheck disable=SC2034 # shellcheck disable=SC2034
dns_selectel_info='Selectel.com
# dns_selectel_info='Selectel.com Domains: Selectel.ru
# Domains: Selectel.ru Site: Selectel.com
# Site: Selectel.com Docs: github.com/acmesh-official/acme.sh/wiki/dnsapi#dns_selectel
# Docs: github.com/acmesh-official/acme.sh/wiki/dnsapi#dns_selectel Options: For old API version v1 (deprecated)
# Options: SL_Ver API version. Use "v1".
# Variables that must be defined before running SL_Key API Key
# SL_Ver can take one of the values 'v1' or 'v2', default is 'v1' OptionsAlt: For the current API version v2
# SL_Ver='v1', when using version API legacy (v1) SL_Ver API version. Use "v2".
# SL_Ver='v2', when using version API actual (v2) SL_Login_ID Account ID
# when using API version v1, i.e. SL_Ver is 'v1' or not defined: SL_Project_Name Project name
# SL_Key - API Key, required SL_Login_Name Service user name
# when using API version v2: SL_Pswd Service user password
# SL_Ver - required as 'v2' SL_Expire Token lifetime. In minutes (0-1440). Default "1400"
# SL_Login_ID - account ID, required Issues: github.com/acmesh-official/acme.sh/issues/5126
# SL_Project_Name - name project, required '
# SL_Login_Name - service user name, required
# SL_Pswd - service user password, required
# SL_Expire - token lifetime in minutes (0-1440), default 1400 minutes
#
# Issues: github.com/acmesh-official/acme.sh/issues/5126
#
SL_Api="https://api.selectel.ru/domains" SL_Api="https://api.selectel.ru/domains"
auth_uri="https://cloud.api.selcloud.ru/identity/v3/auth/tokens" auth_uri="https://cloud.api.selcloud.ru/identity/v3/auth/tokens"

View File

@ -4,9 +4,9 @@ dns_spaceship_info='Spaceship.com
Site: Spaceship.com Site: Spaceship.com
Docs: github.com/acmesh-official/acme.sh/wiki/dnsapi2#dns_spaceship Docs: github.com/acmesh-official/acme.sh/wiki/dnsapi2#dns_spaceship
Options: Options:
SPACESHIP_API_KEY Spaceship API Key SPACESHIP_API_KEY API Key
SPACESHIP_API_SECRET Spaceship API Secret SPACESHIP_API_SECRET API Secret
SPACESHIP_ROOT_DOMAIN (Optional) Manually specify the root domain if auto-detection fails SPACESHIP_ROOT_DOMAIN Root domain. Manually specify the root domain if auto-detection fails. Optional.
Issues: github.com/acmesh-official/acme.sh/issues/6304 Issues: github.com/acmesh-official/acme.sh/issues/6304
Author: Meow <@Meo597> Author: Meow <@Meo597>
' '