mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-28 23:51:23 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
|
@ -0,0 +1,35 @@
|
|||
# Plain MQTT protocol
|
||||
listener 1883
|
||||
|
||||
# MQTT over TLS 1.1
|
||||
listener 8883
|
||||
tls_version tlsv1.1
|
||||
cafile /tls/ca_certificate.pem
|
||||
certfile /tls/server_certificate.pem
|
||||
keyfile /tls/server_key.pem
|
||||
|
||||
# MQTT over TLS 1.2
|
||||
listener 8884
|
||||
tls_version tlsv1.2
|
||||
cafile /tls/ca_certificate.pem
|
||||
certfile /tls/server_certificate.pem
|
||||
keyfile /tls/server_key.pem
|
||||
|
||||
# TODO(This does not appear to be supported on Ubuntu 18.04. Re-try on 20.04 or next LTS release)
|
||||
# MQTT over TLS 1.3
|
||||
#
|
||||
# listener 8885
|
||||
# tls_version tlsv1.3
|
||||
# cafile /tls/ca_certificate.pem
|
||||
# certfile /tls/server_certificate.pem
|
||||
# keyfile /tls/server_key.pem
|
||||
|
||||
log_dest syslog
|
||||
|
||||
log_type error
|
||||
log_type warning
|
||||
log_type notice
|
||||
log_type information
|
||||
log_type debug
|
||||
|
||||
connection_messages true
|
Loading…
Add table
Add a link
Reference in a new issue