blob: 356d1bd92623d696bfa35a1fda4ce9131ef02717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# signal-api.env
HOST_IP=127.0.0.1
PORT=50889
# MODE=normal, json-rpc, native
MODE=json-rpc
LOG_LEVEL=info
SIGNAL_CLI_CONFIG_DIR=/home/.local/share/signal-cli/
# Set to false to disable starting this service via signal-ctl
SIGNAL_REST_API_ENABLED=true
# Connection hints for external daemon
SIGNAL_CLI_TCP_HOST=127.0.0.1
SIGNAL_CLI_TCP_PORT=50887
# RECEIVE_WEBHOOK_URL
# Security token for the REST API. If set, clients must provide this token
# via "Authorization: Bearer <token>" header or "?token=<token>" query parameter.
# Leave empty to disable authentication.
AUTH_TOKEN=
|