Merge pull request #4412 from Shopify/ssl-early-data

Add nginx ssl_early_data option support
This commit is contained in:
Kubernetes Prow Robot 2019-08-15 10:08:35 -07:00 committed by GitHub
commit 0b375989f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 0 deletions

View file

@ -351,6 +351,8 @@ http {
ssl_protocols {{ $cfg.SSLProtocols }};
ssl_early_data {{ if $cfg.SSLEarlyData }}on{{ else }}off{{ end }};
# turn on session caching to drastically improve performance
{{ if $cfg.SSLSessionCache }}
ssl_session_cache builtin:1000 shared:SSL:{{ $cfg.SSLSessionCacheSize }};