publish DDNS

This commit is contained in:
2020-04-21 00:56:28 -04:00
parent 31eec2d3f3
commit 95aa8aa3bc
3 changed files with 375 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- You very much most likely will want to leave "base" ALONE. Make sure you change "token" to your Linode API token,
though. -->
<api base="https://api.linode.com/v4/"
token="YOUR_TOKEN_HERE">
<!-- Domains MUST be created first in the Linode Domains manager! -->
<domain name="domain1.com">
<!-- This would be for the A/AAAA record "foo.domain1.com". -->
<sub>foo</sub>
<!-- And obviously, this for "bar.domain1.com". -->
<sub>bar</sub>
</domain>
<domain name="domain2.net">
<!-- baz.domain2.net -->
<sub>baz</sub>
<!-- quux.domain2.net -->
<sub>quux</sub>
</domain>
</api>