Skip to content

Commit

Permalink
docs(dist): add documentation for advertised address configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
npepinpe committed Jun 23, 2022
1 parent f2899b3 commit 5b79f89
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
20 changes: 20 additions & 0 deletions dist/src/main/config/broker.standalone.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,16 @@
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_COMMANDAPI_PORT.
# port: 26501

# Controls the advertised host; if omitted defaults to the host. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_COMMANDAPI_ADVERTISEDHOST.
# advertisedHost: 0.0.0.0

# Controls the advertised port; if omitted defaults to the port. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_COMMANDAPI_ADVERTISEDPORT.
# advertisedPort: 25601

# internalApi:
# Overrides the host used for internal broker-to-broker communication
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_HOST.
Expand All @@ -167,6 +177,16 @@
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_PORT.
# port: 26502

# Controls the advertised host; if omitted defaults to the host. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_ADVERTISEDHOST.
# advertisedHost: 0.0.0.0

# Controls the advertised port; if omitted defaults to the port. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_ADVERTISEDPORT.
# advertisedPort: 25602

# data:
# This section allows to configure Zeebe's data storage. Data is stored in
# "partition folders". A partition folder has the following structure:
Expand Down
20 changes: 20 additions & 0 deletions dist/src/main/config/broker.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,16 @@
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_COMMANDAPI_PORT.
# port: 26501

# Controls the advertised host; if omitted defaults to the host. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_COMMANDAPI_ADVERTISEDHOST.
# advertisedHost: 0.0.0.0

# Controls the advertised port; if omitted defaults to the port. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_COMMANDAPI_ADVERTISEDPORT.
# advertisedPort: 25601

# internalApi:
# Overrides the host used for internal broker-to-broker communication
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_HOST.
Expand All @@ -99,6 +109,16 @@
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_PORT.
# port: 26502

# Controls the advertised host; if omitted defaults to the host. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_ADVERTISEDHOST.
# advertisedHost: 0.0.0.0

# Controls the advertised port; if omitted defaults to the port. This is particularly useful if your
# broker stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_BROKER_NETWORK_INTERNALAPI_ADVERTISEDPORT.
# advertisedPort: 25602

# data:
# This section allows to configure Zeebe's data storage. Data is stored in
# "partition folders". A partition folder has the following structure:
Expand Down
10 changes: 10 additions & 0 deletions dist/src/main/config/gateway.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@
# This setting can also be overridden using the environment variable ZEEBE_GATEWAY_CLUSTER_PORT.
# port: 26502

# Controls the advertised host; if omitted defaults to the host. This is particularly useful if your
# gateway stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_GATEWAY_CLUSTER_ADVERTISEDHOST.
# advertisedHost: 0.0.0.0

# Controls the advertised port; if omitted defaults to the port. This is particularly useful if your
# gateway stands behind a proxy.
# This setting can also be overridden using the environment variable ZEEBE_GATEWAY_CLUSTER_ADVERTISEDPORT.
# advertisedPort: 25602

# Configure parameters for SWIM protocol which is used to propagate cluster membership
# information among brokers and gateways
# membership:
Expand Down

0 comments on commit 5b79f89

Please sign in to comment.