mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Case insensitive matching
This commit is contained in:
parent
747b7ca507
commit
85675d709c
1 changed files with 1 additions and 1 deletions
|
|
@ -441,7 +441,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator):
|
|||
is_enabled = self.is_site_enabled(filename)
|
||||
|
||||
macro = False
|
||||
if "/Macro/" in path:
|
||||
if "/macro/" in path.lower():
|
||||
macro = True
|
||||
|
||||
vhost = obj.VirtualHost(filename, path, addrs, is_ssl,
|
||||
|
|
|
|||
Loading…
Reference in a new issue