feat(nubus): Allow configuration of limits for password reset requests via security.passwordResetLimits

This commit is contained in:
Lilly Sell
2025-07-30 17:49:25 +02:00
committed by Thorsten Roßner
parent 5537dbbd7c
commit 09f54b4134
2 changed files with 12 additions and 0 deletions

View File

@@ -12,4 +12,11 @@ security:
matchLabels:
app.kubernetes.io/name: "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
...