mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
Fixed hash_bucket_size detection for nginx
This commit is contained in:
parent
1e41641b49
commit
f1ff5516d1
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ class NginxTlsSni01(common.TLSSNI01):
|
|||
if key == ['http']:
|
||||
found_bucket = False
|
||||
for k, _ in body:
|
||||
if k == bucket_directive[0]:
|
||||
if k == bucket_directive[1]:
|
||||
found_bucket = True
|
||||
if not found_bucket:
|
||||
body.insert(0, bucket_directive)
|
||||
|
|
|
|||
Loading…
Reference in a new issue