1
0
mirror of https://github.com/containous/traefik.git synced 2025-11-09 04:23:50 +03:00

Add support to disable session ticket

This commit is contained in:
Avdhoot Dendge
2025-03-28 05:58:04 -04:00
committed by GitHub
parent bb7ef7b48a
commit f0cd6f210b
18 changed files with 134 additions and 36 deletions

View File

@@ -553,4 +553,38 @@ spec:
clientAuthType: RequireAndVerifyClientCert
```
### Disable Session Tickets
_Optional, Default="false"_
When set to true, Traefik disables the use of session tickets, forcing every client to perform a full TLS handshake instead of resuming sessions.
```yaml tab="File (YAML)"
# Dynamic configuration
tls:
options:
default:
disableSessionTickets: true
```
```toml tab="File (TOML)"
# Dynamic configuration
[tls.options]
[tls.options.default]
disableSessionTickets = true
```
```yaml tab="Kubernetes"
apiVersion: traefik.io/v1alpha1
kind: TLSOption
metadata:
name: default
namespace: default
spec:
disableSessionTickets: true
```
{!traefik-for-business-applications.md!}