mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-07 16:01:37 +01:00
Compare commits
3 Commits
irondesk
...
dkaminski/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
43dd2bee9e | ||
|
|
13968a8133 | ||
|
|
484dfafe64 |
@@ -25,6 +25,14 @@ configuration:
|
|||||||
address:
|
address:
|
||||||
per_second: 2
|
per_second: 2
|
||||||
burst_count: 12
|
burst_count: 12
|
||||||
|
# Set higher limits for messages and media due to non-chat Matrix apps and widgets (such as NeoBoard)
|
||||||
|
# https://github.com/nordeck/matrix-neoboard/blob/main/docs/configuration.md#rate-limiting-settings
|
||||||
|
rc_message:
|
||||||
|
per_second: 5
|
||||||
|
burst_count: 25
|
||||||
|
rc_media_create:
|
||||||
|
per_second: 20
|
||||||
|
burst_count: 100
|
||||||
|
|
||||||
database:
|
database:
|
||||||
host: {{ .Values.databases.synapse.host | quote }}
|
host: {{ .Values.databases.synapse.host | quote }}
|
||||||
|
|||||||
@@ -256,6 +256,10 @@ appsuite:
|
|||||||
open-xchange-authentication-masterpassword: "enabled"
|
open-xchange-authentication-masterpassword: "enabled"
|
||||||
properties:
|
properties:
|
||||||
com.openexchange.calendar.allowOrganizerPartStatChanges: "true"
|
com.openexchange.calendar.allowOrganizerPartStatChanges: "true"
|
||||||
|
# Mailfilter
|
||||||
|
com.openexchange.mail.filter.passwordSource: global
|
||||||
|
com.openexchange.mail.filter.masterPassword: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
||||||
|
com.openexchange.mail.filter.preferredSaslMech: ""
|
||||||
propertiesFiles:
|
propertiesFiles:
|
||||||
/opt/open-xchange/etc/masterpassword-authentication.properties:
|
/opt/open-xchange/etc/masterpassword-authentication.properties:
|
||||||
com.openexchange.authentication.masterpassword.password: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
com.openexchange.authentication.masterpassword.password: {{ .Values.secrets.oxAppSuite.migrationsMasterPassword | quote }}
|
||||||
|
|||||||
@@ -66,6 +66,9 @@ cleanup:
|
|||||||
|
|
||||||
selfSigned:
|
selfSigned:
|
||||||
enabled: {{ .Values.certificate.selfSigned }}
|
enabled: {{ .Values.certificate.selfSigned }}
|
||||||
|
caCertificate:
|
||||||
|
create: {{ .Values.certificate.caCertificate.create }}
|
||||||
|
secretName: {{ .Values.certificate.caCertificate.secretName | quote }}
|
||||||
keystores:
|
keystores:
|
||||||
jks:
|
jks:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
@@ -9,5 +9,9 @@ certificate:
|
|||||||
# When using `wildcard: true` please ensure you configure the cert-manager accordingly, e.g. using DNS
|
# When using `wildcard: true` please ensure you configure the cert-manager accordingly, e.g. using DNS
|
||||||
# validation (`DNS-01`) in case of letsencrypt.
|
# validation (`DNS-01`) in case of letsencrypt.
|
||||||
wildcard: false
|
wildcard: false
|
||||||
|
# See also `opendesk/docs/enhanced-configuration/self-signed-certificates.md`
|
||||||
selfSigned: false
|
selfSigned: false
|
||||||
|
caCertificate:
|
||||||
|
create: true
|
||||||
|
secretName: ""
|
||||||
...
|
...
|
||||||
|
|||||||
Reference in New Issue
Block a user