From 8e9b7d25eabfe2fe5ead16442d88172bbd3d4d93 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Wed, 6 Sep 2017 17:07:36 +0000 Subject: [PATCH] Use stable gandi API url The gandi api has changed its url for a more stable one. Although https://dns.beta.gandi.net will continue to work for the foreseable future, this commits updates the url to new official one. --- src/example.config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/example.config.py b/src/example.config.py index 8dadedd..039c895 100644 --- a/src/example.config.py +++ b/src/example.config.py @@ -16,9 +16,9 @@ api_secret = '---my_secret_API_KEY----' ''' Gandiv5 LiveDNS API Location http://doc.livedns.gandi.net/#api-endpoint -https://dns.beta.gandi.net/api/v5/ +https://dns.api.gandi.net/api/v5/ ''' -api_endpoint = 'https://dns.beta.gandi.net/api/v5' +api_endpoint = 'https://dns.api.gandi.net/api/v5' #your domain with the subdomains in the zone file/UUID domain = 'mydomain.tld' @@ -42,4 +42,4 @@ e.g. + http://ipinfo.io/ip + many more ... ''' -ifconfig = 'choose_from_above_or_run_your_own' \ No newline at end of file +ifconfig = 'choose_from_above_or_run_your_own'