38 lines
889 B
YAML
38 lines
889 B
YAML
# Silo Production Configuration
|
|
# For deployment on dedicated VM using external PostgreSQL and MinIO
|
|
#
|
|
# Credentials are provided via environment variables:
|
|
# SILO_DB_PASSWORD
|
|
# SILO_MINIO_ACCESS_KEY
|
|
# SILO_MINIO_SECRET_KEY
|
|
|
|
server:
|
|
host: "127.0.0.1" # Listen only on localhost (nginx handles external traffic)
|
|
port: 8080
|
|
base_url: "https://silo.kindred.internal"
|
|
|
|
database:
|
|
host: "psql.kindred.internal"
|
|
port: 5432
|
|
name: "silo"
|
|
user: "silo"
|
|
password: "" # Set via SILO_DB_PASSWORD
|
|
sslmode: "require"
|
|
max_connections: 20
|
|
|
|
storage:
|
|
endpoint: "minio.kindred.internal:9000"
|
|
access_key: "" # Set via SILO_MINIO_ACCESS_KEY
|
|
secret_key: "" # Set via SILO_MINIO_SECRET_KEY
|
|
bucket: "silo-files"
|
|
use_ssl: true
|
|
region: "us-east-1"
|
|
|
|
schemas:
|
|
directory: "/etc/silo/schemas"
|
|
default: "kindred-rd"
|
|
|
|
freecad:
|
|
uri_scheme: "silo"
|
|
executable: "/usr/bin/freecad"
|