[FEAT] 開啟 EMQX 8883 (MQTTS) 埠位

1. 在 compose.yaml 中新增 8883 埠位映射,支援加密的 MQTT 通訊 (MQTTS)。
2. 同步更新 .env.example 新增 MQTT_SSL_PORT 變數。
3. 此變更將觸發 Demo 環境重啟 EMQX 容器以套用新埠位。
This commit is contained in:
sky121113 2026-05-15 09:26:40 +08:00
parent e004ecbc43
commit 3db353a9f0
2 changed files with 2 additions and 0 deletions

View File

@ -84,4 +84,5 @@ MQTT_OUTGOING_QUEUE=mqtt_outgoing_commands
# EMQX Ports (for local dev)
MQTT_PORT=1883
MQTT_SSL_PORT=8883
EMQX_DASHBOARD_PORT=18083

View File

@ -118,6 +118,7 @@ services:
hostname: emqx
ports:
- '${MQTT_PORT:-1883}:1883'
- '${MQTT_SSL_PORT:-8883}:8883'
- '${EMQX_DASHBOARD_PORT:-18083}:18083'
- '8083:8083'
environment: