mirror of
https://github.com/lukevella/rallly-selfhosted.git
synced 2025-12-10 10:52:50 +01:00
22 lines
638 B
YAML
22 lines
638 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
|
|
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"
|