diff options
| author | Paul Buetow <paul@buetow.org> | 2024-12-01 12:06:51 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-12-01 12:06:51 +0200 |
| commit | 3813e86bdf45b551a8bae307e4c1e3663461d5d9 (patch) | |
| tree | b666cf12199e014936cc66de5152b073284ba4b4 /frontends/Rexfile | |
| parent | 0e5271d40db1838e715e5e9e81acaa83b3164b31 (diff) | |
can relay to f3s
Diffstat (limited to 'frontends/Rexfile')
| -rw-r--r-- | frontends/Rexfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/frontends/Rexfile b/frontends/Rexfile index 0111489..91ac6e8 100644 --- a/frontends/Rexfile +++ b/frontends/Rexfile @@ -73,7 +73,9 @@ our $secrets = sub { read_file './secrets/' . shift }; our @dns_zones = qw/buetow.org dtail.dev foo.zone irregular.ninja snonux.foo paul.cyou/; our @dns_zones_remove = qw//; -our @acme_hosts = qw/buetow.org f3s.buetow.org f3s.snonux.foo git.buetow.org paul.buetow.org dory.buetow.org solarcat.buetow.org fotos.buetow.org znc.buetow.org dtail.dev foo.zone irregular.ninja alt.irregular.ninja snonux.foo/; +our @f3s_hosts = qw/f3s.buetow.org/; # k3s cluster running on FreeBSD in my LAN +our @acme_hosts = qw/buetow.org git.buetow.org paul.buetow.org dory.buetow.org solarcat.buetow.org fotos.buetow.org znc.buetow.org dtail.dev foo.zone irregular.ninja alt.irregular.ninja snonux.foo/; +push @acme_hosts, @f3s_hosts; # UTILITY TASKS @@ -256,7 +258,7 @@ task 'relayd', group => 'frontends', file '/etc/relayd.conf', content => template('./etc/relayd.conf.tpl', - ipv6address => $ipv6address, acme_hosts => \@acme_hosts), + ipv6address => $ipv6address, f3s_hosts => \@f3s_hosts, acme_hosts => \@acme_hosts), owner => 'root', group => 'wheel', mode => '600', |
