diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-22 23:05:15 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-22 23:05:15 +0100 |
commit | 45651ed313d4ae2437738a20660ba71110e2f13d (patch) | |
tree | 640b4326f2517c332dc14b4355ee146699523bba | |
parent | 5731ad022b62564d1364cb1928d261dac04f8914 (diff) | |
download | D53-45651ed313d4ae2437738a20660ba71110e2f13d.tar.gz D53-45651ed313d4ae2437738a20660ba71110e2f13d.zip |
Fix README
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -21,10 +21,10 @@ Example Nomad service configurations: # to this node through A and AAAA records tags = [ "(diplonat (tcp_port 80))" - "d53-a deuxfleurs.fr ${meta.site}.site", - "d53-a deuxfleurs.fr global.site", - "d53-aaaa deuxfleurs.fr ${meta.site}.site", - "d53-aaaa deuxfleurs.fr global.site", + "d53-a ${meta.site}.site.deuxfleurs.fr", + "d53-a global.site.deuxfleurs.fr", + "d53-aaaa ${meta.site}.site.deuxfleurs.fr", + "d53-aaaa global.site.deuxfleurs.fr", ] ``` @@ -35,7 +35,7 @@ Example Nomad service configurations: # which is usually defined in the form of <site_name>.site.deuxfleurs.fr tags = [ "tricot guichet.deuxfleurs.fr", - "d53-cname deuxfleurs.fr guichet", + "d53-cname guichet.deuxfleurs.fr", ] ``` @@ -71,7 +71,7 @@ Here is the relevant Nix configuration snippet that sets up these metadata value - All IPv4 and IPv6 addresses of running Tricot nodes are registered using D53 for the root domain, e.g. `deuxfleurs.fr` -- The IPv6 and IPv6 addresses of running Tricot nodes in each site are +- The IPv4 and IPv6 addresses of running Tricot nodes in each site are registered using D53 for the subdomain `<site_name>.site.<domain_name>`, e.g. `neptune.site.deuxfleurs.fr` |