1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-21 19:01:07 +03:00

Bump min nginx version to 0.8.48

We are assuming that if a server_name isn't specified, it matches the empty
string. Prior to 0.8.48, it would match the machine's hostname.
This commit is contained in:
yan
2015-04-28 13:49:12 -07:00
parent a0b410f460
commit 23d27f4659

View File

@@ -399,10 +399,11 @@ class NginxConfigurator(object):
nginx_version = tuple([int(i) for i in version_matches[0].split(".")])
# nginx < 0.8.21 doesn't use default_server
if nginx_version < (0, 8, 21):
# nginx < 0.8.48 uses machine hostname as default server_name instead of
# the empty string
if nginx_version < (0, 8, 48):
raise errors.LetsEncryptConfiguratorError(
"Nginx version must be 0.8.21+")
"Nginx version must be 0.8.48+")
return nginx_version