fix(quic): default quic listener
This commit is contained in:
parent
45e2605485
commit
2908c06c54
|
@ -31,7 +31,7 @@ listeners.wss.default {
|
||||||
}
|
}
|
||||||
|
|
||||||
# listeners.quic.default {
|
# listeners.quic.default {
|
||||||
# enabled = false
|
# enabled = true
|
||||||
# bind = "0.0.0.0:14567"
|
# bind = "0.0.0.0:14567"
|
||||||
# max_connections = 1024000
|
# max_connections = 1024000
|
||||||
# keyfile = "{{ platform_etc_dir }}/certs/key.pem"
|
# keyfile = "{{ platform_etc_dir }}/certs/key.pem"
|
||||||
|
|
|
@ -113,7 +113,7 @@ is_quicer_app_present() ->
|
||||||
end.
|
end.
|
||||||
|
|
||||||
is_quic_listener_configured() ->
|
is_quic_listener_configured() ->
|
||||||
emqx_listeners:has_enabled_listener_conf_by_type(quic).
|
maps:is_key(quic, emqx:get_config([listeners])).
|
||||||
|
|
||||||
get_description() -> emqx_release:description().
|
get_description() -> emqx_release:description().
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue