feat(quic): update emqx_schema for quic
This commit is contained in:
parent
fd785240f5
commit
4e2e2d5635
|
@ -361,9 +361,7 @@ fields("wss_listener_settings") ->
|
||||||
lists:keydelete("high_watermark", 1, Settings);
|
lists:keydelete("high_watermark", 1, Settings);
|
||||||
|
|
||||||
fields("quic_listener_settings") ->
|
fields("quic_listener_settings") ->
|
||||||
Unsupported = [ "max_connections"
|
Unsupported = [ "active_n"
|
||||||
, "max_conn_rate"
|
|
||||||
, "active_n"
|
|
||||||
, "access"
|
, "access"
|
||||||
, "proxy_protocol"
|
, "proxy_protocol"
|
||||||
, "proxy_protocol_timeout"
|
, "proxy_protocol_timeout"
|
||||||
|
@ -381,8 +379,9 @@ fields("quic_listener_settings") ->
|
||||||
lists:foldl(fun(K, Acc) ->
|
lists:foldl(fun(K, Acc) ->
|
||||||
lists:keydelete(K, 1, Acc)
|
lists:keydelete(K, 1, Acc)
|
||||||
end,
|
end,
|
||||||
[ {"certfile", t(string(), "emqx.certfile", undefined)}
|
[ {"certfile", t(string(), undefined, undefined)}
|
||||||
, {"keyfile", t(string(), "emqx.keyfile", undefined)}
|
, {"keyfile", t(string(), undefined, undefined)}
|
||||||
|
, {"ciphers", t(comma_separated_list(), undefined, "TLS_AES_256_GCM_SHA384,TLS_AES_128_GCM_SHA256,TLS_CHACHA20_POLY1305_SHA256")}
|
||||||
| fields("listener_settings")],
|
| fields("listener_settings")],
|
||||||
Unsupported);
|
Unsupported);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue