mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 14:54:24 -04:00
if we don't know the openssl version, we can't turn off session tickets
This commit is contained in:
parent
3b7d7691c2
commit
17e758efef
1 changed files with 1 additions and 1 deletions
|
|
@ -131,7 +131,7 @@ class NginxConfigurator(common.Installer):
|
|||
def mod_ssl_conf_src(self):
|
||||
"""Full absolute path to SSL configuration file source."""
|
||||
use_tls13 = self.version >= (1, 13, 0)
|
||||
session_tix_off = self.version >= (1, 5, 9) and
|
||||
session_tix_off = self.version >= (1, 5, 9) and self.openssl_version and
|
||||
LooseVersion(self.openssl_version) >= LooseVersion('1.0.2l')
|
||||
|
||||
if use_tls13:
|
||||
|
|
|
|||
Loading…
Reference in a new issue