mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
fix typo
This commit is contained in:
parent
71d2e46f0d
commit
d87cd3bca6
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ class ApacheHttp01(common.TLSSNI01):
|
|||
def _relevant_vhosts(self):
|
||||
http01_port = self.configurator.config.http01_port
|
||||
relevant_vhosts = []
|
||||
for vhost in self.vhosts:
|
||||
for vhost in self.configurator.vhosts:
|
||||
if any(a.is_wildcard() or a.get_port() == http01_port for a in vhost.addrs):
|
||||
if not vhost.ssl:
|
||||
relevant_vhosts.append(vhost)
|
||||
|
|
|
|||
Loading…
Reference in a new issue