kopia lustrzana https://github.com/Yakifo/amqtt
update changelog for 0.11.0 release. minor cleanup of docker launch examples
rodzic
8e60105a11
commit
89ccb857ed
|
@ -33,7 +33,11 @@
|
||||||
- [Issue #35](https://github.com/Yakifo/amqtt/issues/35) plugin interface and optimization
|
- [Issue #35](https://github.com/Yakifo/amqtt/issues/35) plugin interface and optimization
|
||||||
|
|
||||||
|
|
||||||
## 0.10.0
|
## 0.10.2
|
||||||
|
|
||||||
|
- create the necessary .readthedocs.yaml to generate sphinx docs from the 0.10.x series
|
||||||
|
|
||||||
|
## 0.10.1
|
||||||
|
|
||||||
- First release under new package name: amqtt
|
- First release under new package name: amqtt
|
||||||
- Reworked unit tests
|
- Reworked unit tests
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
VITE_MQTT_WS_TYPE = wss
|
VITE_MQTT_WS_TYPE = ws
|
||||||
VITE_MQTT_WS_HOST = test.amqtt.io
|
VITE_MQTT_WS_HOST = localhost
|
||||||
VITE_MQTT_WS_PORT = 8443
|
VITE_MQTT_WS_PORT = 8080
|
||||||
|
|
|
@ -46,8 +46,7 @@ export default function MainGrid() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const mqtt_settings = {
|
const mqtt_settings = {
|
||||||
url: import.meta.env.VITE_MQTT_WS_TYPE + '://' + import.meta.env.VITE_MQTT_WS_HOST + ':' + import.meta.env.VITE_MQTT_WS_PORT,
|
url: import.meta.env.VITE_MQTT_WS_TYPE + '://' + import.meta.env.VITE_MQTT_WS_HOST + ':' + import.meta.env.VITE_MQTT_WS_PORT, client_id: `web-client-${getRandomInt(1, 100)}`,
|
||||||
client_id: `web-client-${getRandomInt(1, 100)}`,
|
|
||||||
clean: true,
|
clean: true,
|
||||||
protocol: 'wss',
|
protocol: 'wss',
|
||||||
protocolVersion: 4, // MQTT 3.1.1
|
protocolVersion: 4, // MQTT 3.1.1
|
||||||
|
|
|
@ -11,7 +11,7 @@ listeners:
|
||||||
bind: 0.0.0.0:8883
|
bind: 0.0.0.0:8883
|
||||||
ssl: on
|
ssl: on
|
||||||
certfile: /etc/letsencrypt/live/test.amqtt.io/fullchain.pem
|
certfile: /etc/letsencrypt/live/test.amqtt.io/fullchain.pem
|
||||||
keyfile: /etc/letsencrypt/live/test.amqtt.io/privkey.pemkk
|
keyfile: /etc/letsencrypt/live/test.amqtt.io/privkey.pem
|
||||||
tls-ws:
|
tls-ws:
|
||||||
type: ws
|
type: ws
|
||||||
bind: 0.0.0.0:8443
|
bind: 0.0.0.0:8443
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
services:
|
services:
|
||||||
amqtt:
|
amqtt:
|
||||||
image: amqtt
|
image: amqtt/amqtt
|
||||||
container_name: amqtt
|
container_name: amqtt
|
||||||
ports:
|
ports:
|
||||||
- "1883:1883"
|
- "1883:1883"
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
|
- "8443:8443"
|
||||||
|
- "8883:8883"
|
||||||
logging:
|
logging:
|
||||||
driver: "json-file"
|
driver: "json-file"
|
||||||
options:
|
options:
|
||||||
|
@ -12,3 +14,4 @@ services:
|
||||||
max-file: "3"
|
max-file: "3"
|
||||||
volumes:
|
volumes:
|
||||||
- ./broker.yaml:/app/conf/broker.yaml
|
- ./broker.yaml:/app/conf/broker.yaml
|
||||||
|
- /etc/letsencrypt:/app/cert:ro
|
||||||
|
|
Ładowanie…
Reference in New Issue