mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 07:21:36 +01:00
feat(nubus): Allow configuration of limits for password reset requests via security.passwordResetLimits
This commit is contained in:
committed by
Thorsten Roßner
parent
1320ac3c6c
commit
883b0283f4
@@ -113,6 +113,11 @@ global:
|
|||||||
token_validity_period: 172800
|
token_validity_period: 172800
|
||||||
blacklist:
|
blacklist:
|
||||||
groups: __DELETE_KEY__
|
groups: __DELETE_KEY__
|
||||||
|
limit:
|
||||||
|
total:
|
||||||
|
day: {{ .Values.security.passwordResetLimits.day }}
|
||||||
|
hour: {{ .Values.security.passwordResetLimits.hour }}
|
||||||
|
minute: {{ .Values.security.passwordResetLimits.minute }}
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
annotations:
|
annotations:
|
||||||
|
|||||||
@@ -12,4 +12,11 @@ security:
|
|||||||
matchLabels:
|
matchLabels:
|
||||||
app.kubernetes.io/name: "ingress-nginx"
|
app.kubernetes.io/name: "ingress-nginx"
|
||||||
namespace: "ingress-nginx"
|
namespace: "ingress-nginx"
|
||||||
|
|
||||||
|
# Global limits for how often a password reset action can be requested.
|
||||||
|
# Defaults are taken from the nubus stack-data-ums chart and should work with most small to medium installations
|
||||||
|
passwordResetLimits:
|
||||||
|
day: 1000
|
||||||
|
hour: 200
|
||||||
|
minute: 120
|
||||||
...
|
...
|
||||||
|
|||||||
Reference in New Issue
Block a user