From d3678328bc52ea3b793e4e8efec476731e581ef4 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 31 Dec 2023 05:11:19 +0300 Subject: [PATCH] made the gate static... Signed-off-by: Alex A. Naanou --- gate-traefik/templates/etc/network/interfaces | 8 ++++---- gate-traefik/templates/etc/traefik/traefik.yaml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/gate-traefik/templates/etc/network/interfaces b/gate-traefik/templates/etc/network/interfaces index ec763d7..975394d 100644 --- a/gate-traefik/templates/etc/network/interfaces +++ b/gate-traefik/templates/etc/network/interfaces @@ -3,13 +3,13 @@ iface lo inet loopback iface lo inet6 loopback auto admin -iface admin inet dhcp - #address 10.0.0.2 +iface admin inet static + address 10.0.0.2 hostname $(hostname) auto lan -iface lan inet dhcp - #address 10.1.1.2 +iface lan inet static + address 10.1.1.2 hostname $(hostname) auto wan diff --git a/gate-traefik/templates/etc/traefik/traefik.yaml b/gate-traefik/templates/etc/traefik/traefik.yaml index 8eab26a..2ba3832 100644 --- a/gate-traefik/templates/etc/traefik/traefik.yaml +++ b/gate-traefik/templates/etc/traefik/traefik.yaml @@ -65,3 +65,4 @@ certificatesResolvers: acme: email: '${EMAIL}' storage: '/etc/traefik/acme.json' + tlsChallenge: {}