Config Options¶
Reference: {#RefConfigOptions}
Fragment.
This page is about the yaml files that determine the configuration of the Wire backend services.
MLS private key paths¶
Note: This developer documentation. Documentation for site operators can be found here: Messaging Layer Security (MLS)
The mlsPrivateKeyPaths
field should contain a mapping from purposes and signature schemes to file paths of corresponding x509 private keys in PEM format.
At the moment, the only purpose is removal
, meaning that the key will be used to sign external remove proposals.
For example:
A simple way to generate an ed25519 private key, discarding the corresponding certificate, is to run the following command:
ECDSA private keys can be generated with:
and similar (replace P-256
with P-384
or P-521
).
Feature flags¶
Also see Wire docs where some of the feature flags are documented from an operations point of view.
Feature flags can be used to turn features on or off, or determine the behavior of the features. Example:
The featureFlags
field in the galley settings is mandatory, and all features must be listed. Each feature defines its own set of allowed flag values. (The reason for that is that as we will see, the semantics is slightly different (or more specific) than boolean.)
SSO¶
This sets the default setting for all teams, and can be overridden by customer support / backoffice. Allowed values: disabled-by-default
, enabled-by-default
.
IMPORTANT: if you change this from ‘enabled-by-default’ to ‘disabled-by-default’ in production, you need to run this migration script to fix all teams that have registered an idp. (if you don’t, the idp will keep working, but the admin won’t be able to register new idps.)
LegalHold¶
Optionally block customer support / backoffice from enabling legal hold for individual teams. Allowed values: ‘disabled-permanently’, ‘disabled-by-default’.
IMPORTANT: If you switch this back to disabled-permanently
from disabled-by-default
, LegalHold devices may still be active in teams that have created them while it was allowed. This may change in the future.
Expose invitation URLs to team admin¶
For further processing (e.g. sending custom emails or rendering the URLs as QR codes), team invitation URLs can be made part of the result of GET /teams/{tid}/invitations
.
This can be a privacy issue as it allows the team admin to impersonate as another team member. The feature is disabled by default.
To activate this feature two steps are needed. First, the team id (tid) has to be added to the list of teams for which this feature can be enabled (exposeInvitationURLsTeamAllowlist
). This is done in galley
’s values.yaml
:
Then, the feature can be set for the team by enabling the exposeInvitationURLsToTeamAdmin
flag. This is done by making a PUT
request to /teams/{tid}/features/exposeInvitationURLsToTeamAdmin
with the body:
Team searchVisibility¶
The team flag searchVisibility
affects the outbound search of user searches. If it is set to no-name-outside-team
for a team then all users of that team will no longer be able to find users that are not part of their team when searching. This also includes finding other users by by providing their exact handle. By default it is set to standard
, which doesn’t put any additional restrictions to outbound searches.
The setting can be changed via endpoint:
The team feature flag teamSearchVisibility
determines whether it is allowed to change the searchVisibility
setting or not. The default is disabled-by-default
. Note that whenever this feature setting is disabled the searchVisibility
will be reset to standard
.
The default setting that applies to all teams on the instance can be defined at configuration
TeamFeature searchVisibilityInbound¶
The team feature flag searchVisibilityInbound
affects if the team’s users are searchable by users from other teams. The default setting is searchable-by-own-team
which hides users from search results by users from other teams. If it is set to searchable-by-all-teams
then users of this team may be included in the results of search queries by other users.
Note: The configuration of this flag does not affect search results when the search query matches the handle exactly. If the handle is provdided then any user on the instance can find users.
This team feature flag can only by toggled by site-administrators with direct access to the galley instance:
where enabled
is equivalent to searchable-by-all-teams
and disabled is equivalent to searchable-by-own-team
.
The default setting that applies to all teams on the instance can be defined at configuration.
Individual teams can overwrite the default setting.
Email Visibility¶
Allowd values and their description.
Classified domains¶
To enable classified domains, see the documentation on classified domains: classified-domains
Conference Calling¶
The conferenceCalling
feature flag controls whether a user can initiate a conference call. The flag can be toggled between its states enabled
and disabled
per team via an internal endpoint.
The conferenceCalling
section in featureFlags
defines the state of the conferenceCalling
feature flag for all personal users (users that don’t belong to a team). For personal users there is no way to toggle the flag, so the setting of the config section wholly defines the state of conferenceCalling
flag for all personal users.
The conferenceCalling
section in featureFlags
also defines the initial state of the conferenceCalling
flag for all teams. After the flag is set for the first time for a team via the internal endpoint the value from the config section will be ignored.
Example value for the config section:
The conferenceCalling
section is optional in featureFlags
. If it is omitted then it is assumed to be enabled
.
See also: conference falling for personal accounts (below).
File Sharing¶
File sharing is enabled and unlocked by default. If you want a different configuration, use the following syntax:
These are all the possible combinations of status
and lockStatus
:
status | lockStatus | |
---|---|---|
enabled | locked | Feature enabled, cannot be disabled by team admin |
enabled | unlocked | Feature enabled, can be disabled by team admin |
disabled | locked | Feature disabled, cannot be enabled by team admin |
disabled | unlocked | Feature disabled, can be enabled by team admin |
The lock status for individual teams can be changed via the internal API (PUT /i/teams/:tid/features/fileSharing/(un)?locked
).
The feature status for individual teams can be changed via the public API (if the feature is unlocked).
Validate SAML Emails¶
If this is enabled, if a new user account is created with an email address as SAML NameID or SCIM externalId, users will receive a validation email. If they follow the validation procedure, they will be able to receive emails about their account, eg., if a new device is associated with the account. If the user does not validate their email address, they can still use it to login.
Validate SAML emails is enabled by default; this is almost always what you want. If you want a different configuration, use the following syntax:
2nd Factor Password Challenge¶
By default Wire enforces a 2nd factor authentication for certain user operations like e.g. activating an account, changing email or password, or deleting an account. If this feature is enabled, a 2nd factor password challenge will be performed for a set of additional user operations like e.g. for generating SCIM tokens, login, or adding a client.
Usually the default is what you want. If you explicitly want to enable the feature, use the following syntax:
MLS¶
If this feature is enabled then clients that support the MLS feature will allow its user to switch between Proteus and the MLS protocol provided the user is listed in protocolToggleUsers
. The default protocol that clients will create new conversations with is specified in defaultProtocol
. The supportedProtocols
array is an ordered list of protocols which may be used by the client. It is used to determine the protocol to use for 1:1 conversations. It must contain the defaultProtocol
.
The defaultCipherSuite
and allowedCipherSuites
contain the default ciphersuite and the allowed ciphersuites that clients should be using. The numerical values should correspond to the indices (starting at 1) specified here.
If the MLS feature is disabled then clients will use the Proteus protocol with this backend.
The default configuration that applies to all teams that didn’t explicitly change their feature configuration can be given in galley’s featureFlags
section in the config file:
This default configuration can be overriden on a per-team basis through the feature config API
This flag also supports setting an initialConfig
value, which is applied when a team is created:
MLS End-to-End Identity¶
The MLS end-to-end identity team feature adds an extra level of security and practicability. If turned on, automatic device authentication ensures that team members know they are communicating with people using authenticated devices. Team members get a certificate on all their devices.
When a client first tries to fetch or renew a certificate, they may need to login to an identity provider (IdP) depending on their IdP domain authentication policy. The user may have a grace period during which they can “snooze” this login. The duration of this grace period (in seconds) is set in the verificationDuration
parameter, which is enforced separately by each client. After the grace period has expired, the client will not allow the user to use the application until they have logged to refresh the certificate. The default value is 1 day (86400s).
The client enrolls using the Automatic Certificate Management Environment (ACME) protocol RFC 8555. The acmeDiscoveryUrl
parameter must be set to the HTTPS URL of the ACME server discovery endpoint for this team. It is of the form “https://acme.{backendDomain}/acme/{provisionerName}/discovery”. For example: https://acme.example.com/acme/provisioner1/discovery
.
useProxyOnMobile
is an optional field. If true
, mobile clients should use the CRL proxy. If missing, null or false, mobile clients should not use the CRL proxy.
crlProxy
contains the URL to the CRL proxy. (Not that this field is optional in the server config, but mandatory when the team feature is updated via the team feature API.)
Key for DPoP access token signing¶
The key for signing DPoP access tokens has to be configured at path brig.secrets.dpopSigKeyBundle
e.g. as follows:
The corresponding public key has to be known by the ACME server.
The key must be an ECDSA P-256 key and can be created with the following openssl
command:
To get the public key run:
Channels¶
Channels are configured per team (as "team feature".) The configuration defines if the channels feature is activated and who can create or open channels.
The configuration has these fields:
lockStatus
:locked
orunlocked
status
:enabled
ordisabled
config.allowed_to_create_channels
: rolesconfig.allowed_to_open_channels
: roles
Possible roles are:
Value | Who is that? | UX description |
---|---|---|
everyone | Partner (a.k.a. external), Member, Admin, Owner | Everyone in the team |
team-members | Member, Admin, Owner | Team members (excluding external) |
admins | Admin, Owner | Only admins |
Configuration example (in Galley's config):
Default values:
lockStatus
:locked
status
:disabled
config.allowed_to_create_channels
:team-members
config.allowed_to_open_channels
:team-members
Federation Domain¶
Regardless of whether a backend wants to enable federation or not, the operator must decide what its domain is going to be. This helps in keeping things simpler across all components of Wire and also enables to turn on federation in the future if required.
For production uses, it is highly recommended that this domain be configured as something that is controlled by the operator(s). The backend or frontend do not need to be available on this domain. As per our current federation design, you must be able to set an SRV record for _wire-server-federator._tcp.<domain>
. This record should have entries which lead to the federator.
IMPORTANT Once this option is set, it cannot be changed without breaking experience for all the users which are already using the backend.
This configuration needs to be made in brig, cargohold and galley (note the slighly different spelling of the config options).
Federation allow list¶
See Configure federation strategy (whom to federate with) in brig (since PR#3260).
Federation TLS Config¶
When a federator connects with another federator, it does so over HTTPS. There are a few options to configure the CA for this:
useSystemCAStore
: Boolean. If set toTrue
it will use the system CA.remoteCAStore
: Maybe Filepath. This config option can be used to specify multiple certificates from either a single file (multiple PEM formatted certificates concatenated) or directory (one certificate per file, file names are hashes from certificate).clientCertificate
: Maybe Filepath. A client certificate to use when connecting to remote federators. If this option is omitted, no client certificate is used. If it is provided, then theclientPrivateKey
option (see below) must be provided as well.clientPrivateKey
: Maybe Filepath. The private key corresponding to theclientCertificate
option above. It is an error to provide only a private key without the corresponding certificate.
Both the useSystemCAStore
and remoteCAStore
options can be specified, in which case the stores are concatenated and used for verifying certificates. When useSystemCAStore
is set to false
and remoteCAStore
is not provided, all outbound connections will fail with a TLS error as there will be no CA for verifying the server certificate.
Examples¶
Federate with anyone, no client certificates, use system CA store to verify server certificates:
Federate only with server2.example.com
, use a client certificate and a specific CA:
Federation protocols¶
A backend can restrict creation of new federated conversations according to the protocol used (Proteus or MLS). This is controlled by the federationProtocols
setting. For example:
will prevent the creation of a Proteus conversation containing federated users, and will prevent federated users from joining a Proteus conversation on this backend. However, existing Proteus conversations with federated users will continue to function, and users of this backend will be allowed to join new and existing Proteus conversations on federated backends.
Outlook calendar integration¶
This feature setting only applies to the Outlook Calendar extension for Wire. As it is an external service, it should only be configured through this feature flag and otherwise ignored by the backend.
Example default configuration:
Guest Link Lifetime¶
To set the validity duration of conversation guest links set guestLinkTTLSeconds
to the desired number of seconds, maximum 1 year, a value ∈ (0, 31536000]. E.g.
Limited Event Fanout¶
To maintain compatibility with clients and their versions that do not implement the limited event fanout when a team member is deleted, the limited event fanout flag is used. Its default value disabled
means that the old-style full event fanout will take place when a team member is deleted. Set the flag to enabled
to send team events only to team owners and administrators.
Example configuration:
Domain Registration¶
This feature flag is per default disabled and locked. It can be set by ibis
via the internal API and it is not meant to be configured via team management.
Cells¶
This feature flag enables cells integration in wire-server. By default, it is disabled and locked. When enabled, it allows changing the cells state of a conversation.
Settings in brig¶
Some features (as of the time of writing this: only conferenceCalling
) allow to set defaults for personal accounts in brig. Those are taken into account in galley’s end-points GET /feature-configs*
.
To be specific:
Conference Calling¶
Two values can be configured for personal accounts: a default for when the user record contains null
as feature config, and default that should be inserted into the user record when creating new users:
You can omit the entire conferenceCalling
block, but not parts of it. Built-in defaults: defaultForNew: null
(user record attribute is left empty); defaultForNull: enabled
. This maintains behavior prior to the introduction of this change, while allowing site owners to postpone the decision about the default setting.
When new users are created, their config will be initialized with what’s in defaultForNew
.
When a null
value is encountered, it is assumed to be defaultForNull
.
(Introduced in https://github.com/wireapp/wire-server/pull/1811.)
SFT configuration¶
Configuring SFT load balancing can be done in two (mutually exclusive) settings:
- Configuring a SRV DNS record based load balancing setting
or
- Configuring a HTTP-based load balancing setting
This setting assumes that the sft load balancer has been deployed with the sftd
helm chart.
Additionally if setSftListAllServers
is set to enabled
(disabled by default) then the /calls/config/v2
endpoint will include a list of all servers that are load balanced by setSftStaticUrl
at field sft_servers_all
. This is required to enable calls between federated instances of Wire.
Calls between federated SFT servers can be enabled using the optional boolean multiSFT.enabled
. If provided, the field is_federating
in the response of /calls/config/v2
will reflect multiSFT.enabled
’s value.
Also, the optional object sftToken
with its fields ttl
and secret
define whether an SFT credential would be rendered in the response of /calls/config/v2
. The field ttl
determines the seconds for the credential to be valid and secret
is the path to the secret shared with SFT to create credentials.
Example:
Locale¶
setDefaultLocale (deprecated / ignored)¶
The brig server config option setDefaultLocale
has been replaced by setDefaultUserLocale
and setDefaultTemplateLocale
. Both settings are optional and setDefaultTemplateLocale
defaults to EN
and setDefaultLocale
defaults to setDefaultTemplateLocale
. If setDefaultLocale
was not set or set to EN
before this change, nothing needs to be done. If setDefaultLocale
was set to any other language other than EN
the name of the setting should be changed to setDefaultTemplateLocale
.
setDefaultTemplateLocale
¶
This option determines the default locale for email templates. The language of the email communication is determined by the user locale (see above). Only if templates of the the locale of the user do not exist or if user locale is not set the setDefaultTemplateLocale
is used as a fallback. If not set the default is EN
. This setting should not be changed unless a complete set of templates is available for the given language.
setDefaultUserLocale
¶
This option determines which language to use for email communication. It is the default value if none is given in the user profile, or if no user profile exists (eg., if user is being provisioned via SCIM or manual team invitation via the team management app). If not set, setDefaultTemplateLocale
is used instead.
MLS settings¶
setEnableMLS
¶
This option determines whether MLS is supported on this backend. When set to false (or absent), MLS endpoints will fail without performing any action.
setKeyPackageMaximumLifetime
¶
This option specifies the maximum accepted lifetime of a key package from the moment it is uploaded, in seconds. For example, when brig is configured as follows:
any key package whose expiry date is set further than 15 days after upload time will be rejected.
Federated domain specific configuration settings¶
Restrict user search¶
See Configure federation strategy (whom to federate with) in brig (since PR#3260).
API Versioning¶
OAuth¶
For more information on OAuth please refer to oauth.
En-/Disable OAuth as follows (if not set the default is disabled):
JWK¶
The JSON Web Keys in test/resources/oauth/
are used to sign and verify OAuth access tokens in the local integration tests. The path to the JWK can be configured in brig.integration.yaml
as follows:
A JWK can be generated with didkit
e.g. Run cargo install didkit-cli
to install and didkit generate-ed25519-key
to generate a JWK.
Expiration time¶
Optionally, configure the OAuth authorization code, access token, and refresh token expiration time in seconds with the following settings:
For more information on what these settings mean in particular, please refer to oauth.
Max number of active refresh tokens¶
The maximum number of active OAuth refresh tokens a user is allowed to have. Built-in default:
Password hashing options¶
Since release 5.6.0, wire-server can hash passwords with argon2id to be stored at rest. If you do not do anything, the deployment will still use scrypt.
The password hashing options are set for brig and galley:
Performance implications: argon2id typically takes longer and uses more memory than scrypt. So when migrating to it brig and galley pods must be allocated more resouces according to the chosen paramters.
When configured to use argon2id, the DB will be migrated slowly over time as the users enter their passwords (either to login or to do other operations which require explicit password entry). This migration is NOT done in reverse, i.e., if a deployment started with argon2id as the algorithm then chose to move to scrypt, the passwords already stored will not get rehashed automatically, however the users will still be able to use them to login.
NOTE It is highly recommended to move to argon2id as it will be made the only available choice for the algorithm
config option in future.
Due to the performance implications, password hashing has to be rate limited more than other operations. To allow this, the rate limiting happens at a deeper level than nginx. It can be configured using these options:
The above are the default values.
The rate limiting happens using the Token Bucket Algorithm. The parameters can be separately configured for: 1. IP Addresses to be used in case of unauthenticated requests using ipAddrLimit
. 2. Users and providers using userLimit
. 3. Internal usages (like calls from backoffice) using internalLimit
.
The ipAddressExceptions
have to be CIDR blocks which can be specified like "127.0.0.0/8"
to allow any IP address from 127.0.0.0
to 127.255.255.255
to by pass the rate limits. To limit one particular IP address, it can be specified as 127.0.0.1/32
.
Due to the performance implications, password hashing has to be rate limited more than other operations. To allow this, the rate limiting happens at a deeper level than nginx. It can be configured using these options:
The above are the default values.
The rate limiting happens using the Token Bucket Algorithm. The parameters can be separately configured for: 1. IP Addresses to be used in case of unauthenticated requests using ipAddrLimit
. 2. Users and providers using userLimit
. 3. Internal usages (like calls from backoffice) using internalLimit
.
The ipAddressExceptions
have to be CIDR blocks which can be specified like "127.0.0.0/8"
to allow any IP address from 127.0.0.0
to 127.255.255.255
to by pass the rate limits. To limit one particular IP address, it can be specified as 127.0.0.1/32
.
Disabling API versions¶
It is possible to disable one ore more API versions. When an API version is disabled it won’t be advertised on the GET /api-version
endpoint, neither in the supported
, nor in the development
section. Requests made to any endpoint of a disabled API version will result in the same error response as a request made to an API version that does not exist.
Each of the services brig, cannon, cargohold, galley, gundeck, proxy, spar should to be configured with the same set of disable API versions in each service’s values.yaml config files.
For example to disable API version v3, you need to configure:
The development API version(s) can be disabled either explicitly or by adding the development
keyword to the list of disabled API versions. E.g.:
This setting is required to be present for all the services (brig, cannon, cargohold, galley, gundeck, proxy, and spar).
The default value (provided under charts/<service>/values.yaml
) is [ development ]
and disables the development versions. To enable all versions including the development versions set the value to be empty: []
.
Team invitation URL for personal users¶
To configure the team invitation URL for personal users that is sent vai email, emailSMS.team.tExistingUserInvitationUrl
should be set to the desired URL, e.g.:
In some environments the team
config section does not exist. In this case brig’s configmap constructs the URL from the account pages URL which then must be set under externalUrls.accountPages
e.g. as follows:
Enterprise Login Audit Log¶
Audit logs for any update (POST, PUT, DELETE) of a domain registration via the internal API are sent via email to the specified email address. If not specified no audit logs will be sent.
Settings in cargohold¶
AWS S3 (or an alternative provider / service) is used to upload and download assets. The Haddock of CargoHold.Options.AWSOpts
provides a lot of useful information.
Settings in spar¶
This section describes the common "single-ingress" (one backend is reachable by only one domain) case. The multi-ingress case is described in Multi-Ingress setup.
SAML¶
In Helm:
appUri
and ssoUri
are mapped to spAppUri
and spSsoUri
in the spar
configuration respectively.
SCIM¶
In Helm:
If not defined, scimBaseUri
is automatically deduced from ssoUri
(see SAML.) E.g. appUri: https://nginz-https.example.com/sso
would be translated to scimBaseUri: https://nginz-https.example.com/scim/v2
.
Multi-Ingress setup¶
In a multi-ingress setup the backend is reachable via several domains, each handled by a separate Kubernetes ingress. This is useful to obfuscate the relationship of clients to each other, as an attacker on TCP/IP-level could only see domains and IPs that do not obviously relate to each other. Each of these backend domains represents a virtual backend. N.B. these backend domains are DNS domains only, not to be confused of the “backend domain” term used for federation (see Federation). In single-ingress setups the backend DNS domain and federation backend domain is usually be the same, but this is not true for multi-ingress setups.
For a multi-ingress setup multiple services need to be configured:
Nginz¶
nginz sets CORS headers. To generate them for multiple domains (usually, nginz works with only one root domain nginx_conf.external_env_domain
) these need to be defined with nginx_conf.additional_external_env_domains
.
E.g.
Note:¶
- To enable clients other than the web interface, configure the deeplinks for each additional domain. The default deep link will not respond to other domains.
Cannon¶
cannon sets CORS headers for direct API accesses by clients. To generate them for multiple domains (usually, cannon works with only one root domain) these need to be defined with nginx_conf.additional_external_env_domains
.
E.g.
Cargohold¶
The backend domain of a download request is defined by its Z-Host
header which is set by nginz
. Multi-ingress handling only applies to download requests as these are implemented by redirects to the S3 assets host for local assets. Uploads are handled by cargohold directly itself.
For a multi-ingress setup aws.multiIngress
needs to be configured as a map from backend domain (Z-Host
header value) to a S3 download endpoint. The Z-Host
header is set by nginz
to the value of the incoming requests Host
header. If there’s no config map entry for a provided Z-Host
in a download request for a local asset, then an error is returned. When configured the configuration of s3DownloadEndpoint
is ignored.
This example shows a setup with fake backends red, green and blue:
This sequence diagram illustrates how users on different virtual backends (represented by different Kubernetes ingresses) download local assets according to the configuration example above:
Galley¶
For conversation invite links to be correct in a multi-ingress setup settings.multiIngress
needs to be configured as map from Z-Host
to the conversation URI prefix. This setting is a Z-Host
depended version of settings.conversationCodeURI
. In fact settings.multiIngress
and settings.conversationCodeURI
are mutually exclusive.
Example:
Spar¶
To enable SSO via SAML spar needs to act as multiple ServiceProviders (SPs); one per multi-ingress domain. The configuration is done with a map of domains to SP settings. It replaces the usual (single-domain) SP configuration.
So, we go from single-domain SP configuration:
To the multi-domain SP configuration:
config
object is added to the spar YAML config in Helm.) The inner data structure stays the same. The difference is that it's on config
's top level for single-ingress and in each <domain>
entry in domainConfigs
for multi-ingress.
In a single-ingress setup the SCIM base URI can be deduced from ssoUri
in Helm (see SAML.) In a multi-ingress setup this relationship isn't that clear as there are multiple ssoUri
s defined. So, the SCIM base URI needs to be set explicitly in scimBaseUri
. In spar's YAML config file scimBaseUri
is always required.
Webapp¶
The webapp runs its own web server (a NodeJS server) to serve static files and the webapp config (based on environment variables). In a multi-ingress configuration, a single webapp instance will be deployed and be accessible from multiple domains (say webapp.red.example.com
and webapp.green.example.com
). When the webapp is loaded from one of those domains it first does a request to the web server to get the config (that will give it, for example, the backend endpoint that it should hit).
Because of the single instance nature of the webapp, by default the configuration is static and the root url to the backend API can be set there (say nginz-https.root.example.com
). In order to completely hide this root domain to the webapp, an environment variable can be set to allow the webapp hostname to be used to generate the API endpoint, team settings links, account page links and CSP headers.
The “hostname” is the result of the domain name minus the webapp.
part of it. So querying the webapp on webapp.red.example.com
will resolve to red.example.com
.
To enable dynamic hostname replacement, first set this variable:
Then, any other variable that will contain the string [[hostname]]
will be replaced by the hostname of the running webapp. (eg. if a webapp is running on webapp.red.example.com
then any occurrence of [[hostname]]
in the config will be replaced by red.example.com
).
You may use the template variable [[hostname]]
in any environment variable to not provide (reveal) actual domain names.
For example:
TLS-encrypted Cassandra connections¶
By default, all connections to Cassandra by the Wire backend are unencrypted. To configure client-side TLS-encrypted connections (where the Wire backend is the client), a Certificate Authority in PEM format needs to be configured.
The ways differ regarding the kind of program:
- Services expect a
cassandra.tlsCa: <filepath>
attribute in their config file. - *-schema CLI commands accept a
--tls-ca-certificate-file <filepath>
parameter. - brig-index migrate-data accepts a
--cassandra-ca-cert <filepath>
parameter.
When a CA PEM file is configured, all Cassandra connections are opened with TLS encryption i.e. there is no fallback to unencrypted connections. This ensures that connections that are expected to be secure, would not silently and unnoticed be insecure.
In Helm charts, the CA PEM is either provided as multiline string in the cassandra.tlsCa
attribute or as a reference to a Secret
in cassandra.tlsCaSecretRef.name
and cassandra.tlsCaSecretRef.key
. The name
is the name of the Secret
, the key
is the entry in it. Such a Secret
can e.g. be created by cert-manager
.
The CA may be self-signed. It is used to validate the certificate of the Cassandra server.
How to configure Cassandra to accept TLS-encrypted connections in general is beyond the scope of this document. The k8ssandra-test-cluster
Helm chart provides an example how to do this for the Kubernetes solution K8ssandra. In the example cert-manager
generates a Certificate
including Java KeyStores, then trust-manager
creates synchronized Secret
s to make only the CA PEM accessible to services (and not the private key.)
The corresponding Cassandra options are described in Cassandra’s documentation: client_encryption_options
Configure Elasticsearch basic authentication¶
When the Wire backend is configured to work against a custom Elasticsearch instance, it may be desired to enable basic authentication for the internal communication between the Wire backend and the ES instance. To do so the Elasticsearch credentials can be set in wire-server’s secrets for brig
and elasticsearch-index
as follows:
In some cases an additional Elasticsearch instance is needed (e.g. for index migrations). To configure credentials for the additional ES instance add the secret as follows:
Configure TLS for Elasticsearch¶
If the elasticsearch instance requires TLS, it can be configured like this:
In case a custom CA certificate is required it can be provided like this:
There is another way to provide this, in case there already exists a kubernetes secret containing the CA certificate(s):
For configuring addtionalWriteIndex
in brig (this is required during a migration from one index to another or one ES instance to another), the settings need to be like this:
WARNING: Please do this only if you know what you’re doing.
In case it is not possible to verify TLS certificate of the elasticsearch server, it can be turned off without tuning off TLS like this:
Configure Redis authentication¶
If the redis used needs authentication with either username and password or just password (legacy auth), it can be configured like this:
NOTE: When using redis < 6, the redisUsername
must not be set at all (not even set to null
or empty string, the key must be absent from the config). When using redis >= 6 and using legacy auth, the redisUsername
must either be not set at all or set to "default"
.
While doing migrations to another redis instance, the credentials for the addtional redis can be set as follows:
NOTE: redisAddtiionalWriteUsername
follows same restrictions as redisUsername
when using legacy auth.
Configure TLS for Redis¶
If the redis instance requires TLS, it can be configured like this:
In case a custom CA certificate is required it can be provided like this:
There is another way to provide this, in case there already exists a kubernetes secret containing the CA certificate(s):
For configuring redisAdditionalWrite
in gundeck (this is required during a migration from one redis instance to another), the settings need to be like this:
WARNING: Please do this only if you know what you’re doing.
In case it is not possible to verify TLS certificate of the redis server, it can be turned off without tuning off TLS like this:
Configure RabbitMQ¶
RabbitMQ authentication must be configured on brig, galley and background-worker. For example:
the adminPort
setting is only needed by background-worker.
In order to enable TLS when connecting to RabbitMQ, the following settings need to be added:
WARNING: Please do this only if you know what you’re doing.
In case it is not possible to verify the TLS certificate of the RabbitMQ server, verification can be turned off by settings insecureSkipVerifyTls
to true
.
Configure Cells¶
If Cells integration is enabled, gundeck must be configured with the name of the RabbitMQ queue where Cells events can be forwarded. This can be done via the cellsEventQueue
setting: