netbird/infrastructure_files/setup.env

63 lines
1.8 KiB
Bash
Raw Normal View History

# Dashboard domain and auth0 configuration
# Dashboard domain. e.g. app.mydomain.com
2022-05-22 18:53:47 +02:00
NETBIRD_DOMAIN=""
# e.g. dev-24vkclam.us.auth0.com
2022-05-22 18:53:47 +02:00
NETBIRD_AUTH0_DOMAIN=""
# e.g. 61u3JMXRO0oOevc7gCkZLCwePQvT4lL0
2022-05-22 18:53:47 +02:00
NETBIRD_AUTH0_CLIENT_ID=""
2022-04-04 14:22:42 +02:00
# e.g. https://app.mydomain.com/ or https://app.mydomain.com,
# Make sure you used the exact same value for Identifier
# you used when creating your Auth0 API
2022-05-22 18:53:47 +02:00
NETBIRD_AUTH0_AUDIENCE=""
# e.g. hello@mydomain.com
2022-05-22 18:53:47 +02:00
NETBIRD_LETSENCRYPT_EMAIL=""
## From this point, most settings are being done automatically, but you can edit if you need some customization
# Management API
# Management API port
2022-05-22 18:53:47 +02:00
NETBIRD_MGMT_API_PORT=33071
# Management API endpoint address, used by the Dashboard
2022-05-22 18:53:47 +02:00
NETBIRD_MGMT_API_ENDPOINT=https://$NETBIRD_DOMAIN:$NETBIRD_MGMT_API_PORT
# Management Certficate file path. These are generated by the Dashboard container
2022-05-22 18:53:47 +02:00
NETBIRD_MGMT_API_CERT_FILE="/etc/letsencrypt/live/$NETBIRD_DOMAIN/fullchain.pem"
# Management Certficate key file path.
2022-05-22 18:53:47 +02:00
NETBIRD_MGMT_API_CERT_KEY_FILE="/etc/letsencrypt/live/$NETBIRD_DOMAIN/privkey.pem"
# Turn credentials
# User
TURN_USER=self
# Password. If empty, the configure.sh will generate one with openssl
TURN_PASSWORD=
# Min port
TURN_MIN_PORT=49152
# Max port
TURN_MAX_PORT=65535
VOLUME_PREFIX="netbird-"
MGMT_VOLUMESUFFIX="mgmt"
SIGNAL_VOLUMESUFFIX="signal"
LETSENCRYPT_VOLUMESUFFIX="letsencrypt"
# exports
2022-05-22 18:53:47 +02:00
export NETBIRD_DOMAIN
export NETBIRD_AUTH0_DOMAIN
export NETBIRD_AUTH0_CLIENT_ID
export NETBIRD_AUTH0_AUDIENCE
export NETBIRD_LETSENCRYPT_EMAIL
export NETBIRD_MGMT_API_PORT
export NETBIRD_MGMT_API_ENDPOINT
export NETBIRD_MGMT_API_CERT_FILE
export NETBIRD_MGMT_API_CERT_KEY_FILE
export TURN_USER
export TURN_PASSWORD
export TURN_MIN_PORT
export TURN_MAX_PORT
export VOLUME_PREFIX
export MGMT_VOLUMESUFFIX
export SIGNAL_VOLUMESUFFIX
export LETSENCRYPT_VOLUMESUFFIX