mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
Merge pull request #3463 from Gordin/master
Fixed hash_bucket_size detection for nginx
This commit is contained in:
commit
688b2de8fe
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