From 5ea89ebcd74dc62c995365888488b10bd2e0e17b Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 10 May 2026 00:02:27 +0000 Subject: [PATCH] postiz: disable signups (DISABLE_REGISTRATION=true) Admin account already exists; we don't want random users registering on the public-facing instance. Sign-in only from now on. --- stacks/postiz/modules/postiz/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/postiz/modules/postiz/main.tf b/stacks/postiz/modules/postiz/main.tf index a55c6711..77971332 100644 --- a/stacks/postiz/modules/postiz/main.tf +++ b/stacks/postiz/modules/postiz/main.tf @@ -143,8 +143,8 @@ resource "helm_release" "postiz" { STORAGE_PROVIDER = "local" UPLOAD_DIRECTORY = "/uploads" NEXT_PUBLIC_UPLOAD_DIRECTORY = "/uploads" - # Set true after first admin user is created via UI - DISABLE_REGISTRATION = "false" + # Disabled — admin user already created; sign-in only. + DISABLE_REGISTRATION = "true" IS_GENERAL = "true" NX_ADD_PLUGINS = "false" # Postiz uses Temporal for cron/scheduling — bring our own; Helm chart doesn't.