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).fix-revocation-examples
parent
26928c0762
commit
4c608f22f8
|
@ -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:
|
||||
|
|
|
@ -39,4 +39,4 @@ services:
|
|||
- "8888:8888"
|
||||
networks:
|
||||
openfire-federated-net:
|
||||
ipv4_address: 172.50.0.30
|
||||
ipv4_address: 172.50.0.88
|
Loading…
Reference in New Issue