From 4eb1105b476ffde0118730df1e8d2f0d391eb35d Mon Sep 17 00:00:00 2001 From: David Stephens Date: Mon, 28 Aug 2023 22:40:47 +0100 Subject: [PATCH] Fixes Wrong loadbalancer port in `hello_world` example? #671 --- roles/hello_world/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/hello_world/tasks/main.yml b/roles/hello_world/tasks/main.yml index 7b1d8e3b..3d5cb8e3 100644 --- a/roles/hello_world/tasks/main.yml +++ b/roles/hello_world/tasks/main.yml @@ -25,7 +25,7 @@ traefik.http.routers.hello_world.tls.certresolver: "letsencrypt" traefik.http.routers.hello_world.tls.domains[0].main: "{{ ansible_nas_domain }}" traefik.http.routers.hello_world.tls.domains[0].sans: "*.{{ ansible_nas_domain }}" - traefik.http.services.hello_world.loadbalancer.server.port: "4040" + traefik.http.services.hello_world.loadbalancer.server.port: "8000" when: hello_world_enabled is true - name: Stop Hello World