From e53b98303957222f398550a48532af5f6f39656c Mon Sep 17 00:00:00 2001 From: Matthew Vivian Date: Wed, 13 Nov 2024 07:55:28 +0000 Subject: [PATCH] fix: Use unique IP for OCSP Prior to this the OCSP responder used 172.50.0.30. This conflicts with an example given in the readme, which uses the same IP address describing how to add a third node to the setup. This change avoids confusion, and keeps things consistent if we ever decide to copy this to the other configurations (eg clustering_with_federation). --- federation/docker-compose-network-ipv4-only.yml | 4 ++-- federation/docker-compose-ocsp-responder.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/federation/docker-compose-network-ipv4-only.yml b/federation/docker-compose-network-ipv4-only.yml index f684ca0..1905522 100644 --- a/federation/docker-compose-network-ipv4-only.yml +++ b/federation/docker-compose-network-ipv4-only.yml @@ -19,7 +19,7 @@ services: - "conference.xmpp1.localhost.example:172.50.0.10" - "xmpp2.localhost.example:172.50.0.20" - "conference.xmpp2.localhost.example:172.50.0.20" - - "ocsp.localhost.example:172.50.0.30" + - "ocsp.localhost.example:172.50.0.88" xmpp2: networks: @@ -30,7 +30,7 @@ services: - "conference.xmpp1.localhost.example:172.50.0.10" - "xmpp2.localhost.example:172.50.0.20" - "conference.xmpp2.localhost.example:172.50.0.20" - - "ocsp.localhost.example:172.50.0.30" + - "ocsp.localhost.example:172.50.0.88" networks: openfire-federated-net: diff --git a/federation/docker-compose-ocsp-responder.yml b/federation/docker-compose-ocsp-responder.yml index e1264f1..bff5e28 100644 --- a/federation/docker-compose-ocsp-responder.yml +++ b/federation/docker-compose-ocsp-responder.yml @@ -39,4 +39,4 @@ services: - "8888:8888" networks: openfire-federated-net: - ipv4_address: 172.50.0.30 \ No newline at end of file + ipv4_address: 172.50.0.88 \ No newline at end of file