diff --git a/infrastructure_files/base.setup.env b/infrastructure_files/base.setup.env index 521c0d332..8fa58ffc3 100644 --- a/infrastructure_files/base.setup.env +++ b/infrastructure_files/base.setup.env @@ -3,7 +3,7 @@ # Management API # Management API port -NETBIRD_MGMT_API_PORT=33073 +NETBIRD_MGMT_API_PORT=${NETBIRD_MGMT_API_PORT:-33073} # Management API endpoint address, used by the Dashboard NETBIRD_MGMT_API_ENDPOINT=https://$NETBIRD_DOMAIN:$NETBIRD_MGMT_API_PORT # Management Certficate file path. These are generated by the Dashboard container @@ -16,7 +16,7 @@ NETBIRD_MGMT_DNS_DOMAIN=${NETBIRD_MGMT_DNS_DOMAIN:-netbird.selfhosted} # Signal NETBIRD_SIGNAL_PROTOCOL="http" -NETBIRD_SIGNAL_PORT=10000 +NETBIRD_SIGNAL_PORT=${NETBIRD_SIGNAL_PORT:-10000} # Turn credentials # User @@ -24,9 +24,9 @@ TURN_USER=self # Password. If empty, the configure.sh will generate one with openssl TURN_PASSWORD= # Min port -TURN_MIN_PORT=49152 +TURN_MIN_PORT=${TURN_MIN_PORT:-49152} # Max port -TURN_MAX_PORT=65535 +TURN_MAX_PORT=${TURN_MAX_PORT:-65535} VOLUME_PREFIX="netbird-" MGMT_VOLUMESUFFIX="mgmt"