chore(quic): doc about deprecated fields.
This commit is contained in:
parent
45718dd77f
commit
b81b62c639
|
@ -34,6 +34,10 @@ listeners.wss.default {
|
||||||
# enabled = true
|
# 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"
|
# ssl_options {
|
||||||
# certfile = "{{ platform_etc_dir }}/certs/cert.pem"
|
# verify = verify_none
|
||||||
#}
|
# keyfile = "{{ platform_etc_dir }}/certs/key.pem"
|
||||||
|
# certfile = "{{ platform_etc_dir }}/certs/cert.pem"
|
||||||
|
# cacertfile = "{{ platform_etc_dir }}/certs/cacert.pem"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
|
|
@ -1815,8 +1815,8 @@ fields_listener_enabled {
|
||||||
|
|
||||||
fields_mqtt_quic_listener_certfile {
|
fields_mqtt_quic_listener_certfile {
|
||||||
desc {
|
desc {
|
||||||
en: """Path to the certificate file."""
|
en: """Path to the certificate file. Will be deprecated in 5.1, use .ssl_options.certfile instead."""
|
||||||
zh: """证书文件。"""
|
zh: """证书文件。在 5.1 中会被废弃,使用 .ssl_options.certfile 代替。"""
|
||||||
}
|
}
|
||||||
label: {
|
label: {
|
||||||
en: "Certificate file"
|
en: "Certificate file"
|
||||||
|
@ -1826,8 +1826,8 @@ fields_mqtt_quic_listener_certfile {
|
||||||
|
|
||||||
fields_mqtt_quic_listener_keyfile {
|
fields_mqtt_quic_listener_keyfile {
|
||||||
desc {
|
desc {
|
||||||
en: """Path to the secret key file."""
|
en: """Path to the secret key file. Will be deprecated in 5.1, use .ssl_options.keyfile instead."""
|
||||||
zh: """私钥文件。"""
|
zh: """私钥文件。在 5.1 中会被废弃,使用 .ssl_options.keyfile 代替。"""
|
||||||
}
|
}
|
||||||
label: {
|
label: {
|
||||||
en: "Key file"
|
en: "Key file"
|
||||||
|
|
|
@ -1784,6 +1784,10 @@ desc("listener_ssl_opts") ->
|
||||||
"Socket options for SSL connections.";
|
"Socket options for SSL connections.";
|
||||||
desc("listener_wss_opts") ->
|
desc("listener_wss_opts") ->
|
||||||
"Socket options for WebSocket/SSL connections.";
|
"Socket options for WebSocket/SSL connections.";
|
||||||
|
desc("fields_mqtt_quic_listener_certfile") ->
|
||||||
|
"Path to the certificate file. Will be deprecated in 5.1, use .ssl_options.certfile instead.";
|
||||||
|
desc("fields_mqtt_quic_listener_keyfile") ->
|
||||||
|
"Path to the secret key file. Will be deprecated in 5.1, use .ssl_options.keyfile instead.";
|
||||||
desc("listener_quic_ssl_opts") ->
|
desc("listener_quic_ssl_opts") ->
|
||||||
"TLS options for QUIC transport.";
|
"TLS options for QUIC transport.";
|
||||||
desc("ssl_client_opts") ->
|
desc("ssl_client_opts") ->
|
||||||
|
|
Loading…
Reference in New Issue