Disable builtin ssl_session_cache (#7777)

Signed-off-by: Alex R <i@sepa.spb.ru>
This commit is contained in:
Alex R 2021-10-08 21:47:23 +03:00 committed by GitHub
parent 0963a45922
commit 9e3c528640
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -429,7 +429,7 @@ http {
# turn on session caching to drastically improve performance
{{ if $cfg.SSLSessionCache }}
ssl_session_cache builtin:1000 shared:SSL:{{ $cfg.SSLSessionCacheSize }};
ssl_session_cache shared:SSL:{{ $cfg.SSLSessionCacheSize }};
ssl_session_timeout {{ $cfg.SSLSessionTimeout }};
{{ end }}