使用nginx作为MQTT的SSL卸载代理
原文英文,约300词,阅读约需1分钟。发表于: 。nginx's stream_proxy and stream_ssl modules can be used to add tls/ssl support to mosquitto or any tcp server. This can be useful because mosquitto only supports certain certificate types. The...
nginx的stream_proxy和stream_ssl模块可以为mosquitto或其他TCP服务器添加TLS/SSL支持,解决mosquitto仅支持某些证书类型的问题。通过在nginx配置证书,解决mbedTLS无法识别mosquitto证书的问题。配置方法是在/etc/nginx/nginx.conf中添加stream模块,并在/etc/nginx/conf.d/01-mqtt.stream中设置代理。nginx监听8883端口,处理加密并将明文转发到localhost:1883。mosquitto只需配置密码文件和监听端口。