Hi everybody,
Here's my problem - and I have to admit I'm not a developer by any means... :-)
I can not get mqtt working on my site
Here are my settings - mind you, I'm not using SSL:
weewx.conf
[[MQTT]]
server_url = mqtt://weewx:weather@localhost:1883/
topic = weather
unit_system = US
binding = archive, loop
aggregation = aggregate
#log_success = False
log_failure = True
skin.conf
# MQTT Websockets defaults
mqtt_websockets_enabled = 1
mqtt_websockets_host = "localhost"
mqtt_websockets_port = 9001
mqtt_websockets_ssl = 0
mqtt_websockets_topic = "weather/#"
disconnect_live_website_visitor = 1800000
mosquitto.conf
persistence false
allow_anonymous true
password_file /volume1/@appstore/mosquitto/var/passwd
acl_file /volume1/@appstore/mosquitto/var/acl
# Insecure mqtt to localhost only, and secure mqtt
listener 1883
protocol mqtt
# websockets
listener 9001
protocol websockets
websocket 9001 receives messages (mqtt-spy)

mqtt 1883 receives messages (mqtt)

But there is no connection. From Chrome developer console I see that the access to ws://localhost:9001/mqtt is declined...
What I'm doing wrong?