mirror of
https://github.com/bytedance/g3.git
synced 2026-05-05 15:31:21 +00:00
allow to disable session cache in TLS server
This commit is contained in:
parent
534cb13ab3
commit
7988e2f802
11 changed files with 127 additions and 20 deletions
|
|
@ -412,7 +412,17 @@ The map is consists of the following fields:
|
|||
|
||||
**optional**, **type**: bool
|
||||
|
||||
Set if we should disable TLS session ticket (stateless).
|
||||
Set if we should disable TLS session ticket (stateless session resumption by Session Ticket).
|
||||
|
||||
**default**: false
|
||||
|
||||
.. versionadded:: 1.9.4
|
||||
|
||||
* no_session_cache
|
||||
|
||||
**optional**, **type**: bool
|
||||
|
||||
Set if we should disable TLS session cache (stateful session resumption by Session ID).
|
||||
|
||||
**default**: false
|
||||
|
||||
|
|
@ -587,12 +597,22 @@ The map is consists of the following fields:
|
|||
|
||||
**optional**, **type**: bool
|
||||
|
||||
Set if we should enable TLS session ticket to do TLS Session Resumption without Server-Side State.
|
||||
Set if we should enable TLS session ticket to do stateless TLS Session Resumption.
|
||||
|
||||
.. versionchanged:: 1.7.28
|
||||
|
||||
**default**: disabled
|
||||
|
||||
* no_session_cache
|
||||
|
||||
**optional**, **type**: bool
|
||||
|
||||
Set if we should disable TLS session cache (stateful session resumption by Session ID).
|
||||
|
||||
**default**: false
|
||||
|
||||
.. versionadded:: 1.9.4
|
||||
|
||||
* ca_certificate | client_auth_certificate
|
||||
|
||||
**optional**, **type**: :ref:`tls certificates <conf_value_tls_certificates>`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue