Files
go-sip/deploys/env/dispatcher.env.example

22 lines
1.2 KiB
Bash

# Physical-host example; real deployment requires separate authorization.
# Install dispatcher.json from deploys/config/dispatcher.json.example and replace
# its example dispatcher_id with this installation's unique stable UUID v4.
SIP_GO_AGENT_MODE=real
DISPATCHER_DB=/var/lib/sip-go-agent/dispatcher/dispatcher.db
# Required by the current V3 runtime; inject approved values out of band.
# DISPATCHER_CONFIG_READ_BASE_URL=<injected-config-read-base-url>
# DISPATCHER_SECRET_KEY=<injected-secret>
# RABBITMQ_URL=<injected-broker-url>
DISPATCHER_AGENT_ENDPOINTS_FILE=/etc/sip-go-agent/agent-endpoints.json
MTLS_CA_FILE=/etc/sip-go-agent/pki/ca.pem
MTLS_CERT_FILE=/etc/sip-go-agent/pki/dispatcher.pem
MTLS_KEY_FILE=/etc/sip-go-agent/pki/dispatcher.key
MTLS_SERVER_NAME=dispatcher.internal
DISPATCHER_GRPC_LISTEN=127.0.0.1:19443
DISPATCHER_ALLOWED_AGENT_IDS=agent-cell-a
# MTLS_PEER_CERT_FINGERPRINTS=<approved-agent-certificate-fingerprint>
# Inject only the credential variables explicitly referenced by dispatcher.json.
# Never put actual values in this example or commit them:
# GO_SIP_OSS_ACCESS_KEY_ID=<injected-at-runtime>
# GO_SIP_OSS_ACCESS_KEY_SECRET=<injected-at-runtime>