Disallow signups from vaultwarden

This commit is contained in:
Daniel Cosme
2026-05-07 21:21:34 -04:00
parent 38e96bd999
commit ce00f8b542
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -37,8 +37,8 @@ func Stack() stack.Stack {
func Deployment() apps.Deployment {
envMap := map[string]string{
"DOMAIN": root.Vaultwarden.Public.URL,
"SIGNUPS_ALLOWED": "true",
"DOMAIN": root.Vaultwarden.Public.URL,
// "SIGNUPS_ALLOWED": "true",
}
dataVol := kube.NewVolumeFrom(kube.VolumeSourcePVC, "data", pvc.Name)
podSpec := core.PodSpec{