mirror of
https://github.com/optim-enterprises-bv/Mailu.git
synced 2025-11-02 11:08:01 +00:00
In fact in fullchain we want all but the last
This commit is contained in:
@@ -31,8 +31,7 @@ command2 = [
|
||||
]
|
||||
|
||||
def format_for_nginx(fullchain, output):
|
||||
""" nginx expects cert + intermediate
|
||||
whereas letsencrypt provides ca + intermediate + cert
|
||||
""" nginx doesn't need the "compat"
|
||||
"""
|
||||
certs = []
|
||||
with open(fullchain, 'r') as pem:
|
||||
@@ -43,7 +42,7 @@ def format_for_nginx(fullchain, output):
|
||||
certs += [cert]
|
||||
cert = ''
|
||||
with open(output, 'w') as pem:
|
||||
for cert in reversed(certs[1:]):
|
||||
for cert in certs[:-1]:
|
||||
pem.write(cert)
|
||||
|
||||
# Wait for nginx to start
|
||||
|
||||
Reference in New Issue
Block a user