-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 960 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (20 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copy to .env before `docker compose up`.
# The URL a browser will use. OAuth redirects, the Secure cookie flag and the
# WebSocket origin check all derive from this, so it must match reality.
MQTTVIEW_BASE_URL=http://127.0.0.1:8114
# Which host interface to publish the port on. Leave on loopback unless a
# reverse proxy terminates TLS in front of it.
MQTTVIEW_BIND=127.0.0.1
# Host port to publish on.
MQTTVIEW_PORT=8114
# Encrypts stored broker passwords and TLS private keys. Generate once with:
# openssl rand -hex 32
# Keep it: losing or changing it means re-entering every broker credential.
# Left empty, mqttview generates one into the data volume instead.
MQTTVIEW_SECRET_KEY=
# Used only on the very first start, when no users exist yet. Leave the
# password empty to have one generated and printed to the container log.
MQTTVIEW_BOOTSTRAP_EMAIL=admin@localhost
MQTTVIEW_BOOTSTRAP_PASSWORD=
MQTTVIEW_LOG_LEVEL=info
MQTTVIEW_VERSION=latest