--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/rabbitmq-users/043a18d4-1a12-4713-b64d-cbe0975ee564n%40googlegroups.com.
Thanks for the info! To set up HTTPS for the management API, you will need to use the management.ssl.* settings in the config file: https://rabbitmq.com/management.html#single-listener-https. If you need browser access to the message queues, you may be looking for https://rabbitmq.com/web-stomp.html#tls or https://rabbitmq.com/web-mqtt.html#tls.
The errors at the end of the log are related to using non-TLS client connections for TLS listeners:
> 2022-02-23 08:36:03.600000+02:00 [notice] <0.12098.3> TLS server: In state hello at tls_record.erl:564 generated SERVER ALERT: Fatal - Unexpected Message
> 2022-02-23 08:36:03.600000+02:00 [notice] <0.12098.3> - {unsupported_record_type,71}
The "71" here is the ASCII letter "G", likely from a plain HTTP "GET" request.
Hope this helps,
Adam