1
0
mirror of https://github.com/lukevella/rallly-selfhosted.git synced 2025-12-10 02:42:49 +01:00
rallly-selfhosted/kubernetes/rallly-config.yaml
2025-11-28 14:48:57 +01:00

25 lines
815 B
YAML

# kubernetes/rallly-config.yaml
# Stores all non-secret configuration variables.
apiVersion: v1
kind: ConfigMap
metadata:
name: rallly-config
namespace: default
data:
# Base URL for the application (must match Ingress host)
NEXT_PUBLIC_BASE_URL: "https://rallly.example.com"
# Email Settings
# Note: This is distinct from INITIAL_ADMIN_EMAIL (defined in secrets), which creates the admin account.
# SUPPORT_EMAIL is the user-facing support contact shown to users.
SUPPORT_EMAIL: "admin@example.com"
EMAIL_LOGIN_ENABLED: "true"
# SECURITY: This allows ANY email to register. Restrict to "*@example.com" or specific emails for production.
ALLOWED_EMAILS: "*"
# SMTP Settings (Credentials will be in the Secret file)
SMTP_HOST: "smtp.example.com"
SMTP_PORT: "587"
SMTP_SECURE: "false"