Replace all references to internal hostnames (silo.kindred.internal, psql.kindred.internal, minio.kindred.internal, ipa.kindred.internal, keycloak.kindred.internal) with example.internal equivalents. Replace gitea.kindred.internal and git.kindred.internal with the public git.kindred-systems.com instance. Also fix stale silo-0062 repo name in setup-host.sh and DEPLOYMENT.md.
27 lines
798 B
Plaintext
27 lines
798 B
Plaintext
# Silo daemon environment variables
|
|
# Copy to /etc/silo/silod.env and fill in values
|
|
# Permissions: chmod 600 /etc/silo/silod.env
|
|
|
|
# Database credentials (psql.example.internal)
|
|
# Database: silo, User: silo
|
|
SILO_DB_PASSWORD=
|
|
|
|
# MinIO credentials (minio.example.internal)
|
|
# User: silouser
|
|
SILO_MINIO_ACCESS_KEY=silouser
|
|
SILO_MINIO_SECRET_KEY=
|
|
|
|
# Authentication
|
|
# Session secret (required when auth is enabled)
|
|
SILO_SESSION_SECRET=
|
|
# Default admin account (created on first startup if both are set)
|
|
SILO_ADMIN_USERNAME=admin
|
|
SILO_ADMIN_PASSWORD=
|
|
# OIDC client secret (if using Keycloak)
|
|
# SILO_OIDC_CLIENT_SECRET=
|
|
# LDAP bind password (if using service account for user search)
|
|
# SILO_LDAP_BIND_PASSWORD=
|
|
|
|
# Optional: Override server base URL
|
|
# SILO_SERVER_BASE_URL=http://silo.example.internal:8080
|