mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 09:33:24 +01:00
d18966276a
This prevents changing the system DNS config when there is nothing to new It also prevents issues with network change on google chrome
14 lines
655 B
Bash
14 lines
655 B
Bash
## example file, you can copy this file to setup.env and update its values
|
|
##
|
|
# Dashboard domain. e.g. app.mydomain.com
|
|
NETBIRD_DOMAIN=$CI_NETBIRD_DOMAIN
|
|
# e.g. https://dev-24vkclam.us.auth0.com/ or https://YOUR-KEYCLOAK-HOST:8080/realms/netbird
|
|
NETBIRD_AUTH_OIDC_CONFIGURATION_ENDPOINT="https://example.eu.auth0.com/.well-known/openid-configuration"
|
|
# e.g. netbird-client
|
|
NETBIRD_AUTH_CLIENT_ID=$CI_NETBIRD_AUTH_CLIENT_ID
|
|
# indicates whether to use Auth0 or not: true or false
|
|
NETBIRD_USE_AUTH0=$CI_NETBIRD_USE_AUTH0
|
|
NETBIRD_AUTH_AUDIENCE=$CI_NETBIRD_AUTH_AUDIENCE
|
|
# e.g. hello@mydomain.com
|
|
NETBIRD_LETSENCRYPT_EMAIL=""
|
|
NETBIRD_AUTH_REDIRECT_URI="/peers" |