Hello guys,
we are trying to implement mqtt.cool but can't get it up and running.
Our infrastructure:
We are currently working with docker and having a container for the mqtt broker installed inside our corporate network, which is protected and can only be accessed via port 443 and port 80. But outside of that network we need clients to send data to that broker. Therefore we tried to install the mqtt.cool extension in a container as well.
As we deployed the container there was no default.config created, so we took the configuration from here.
Our configuration was:
<?xml version="1.0" encoding="UTF-8"?>
<mqttcool_brokers_config>
<configurations>
<paramname="mosquitto.server_address">address</param>
<paramname="mosquitto.clientid_prefix">mosquitto_client</param>
<paramname="mosquitto.connection_timeout">30</param>
<paramname="mosquitto.keep_alive">10</param>
<param name="mosquitto.username">username</param>
<param name="mosquitto.password">password</param>
</configurations>
</mqttcool_brokers_config>
Is there anything more to add to get it done?
Thank you in advance!