diff options
author | Francis Lavoie <[email protected]> | 2023-10-14 16:23:50 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-14 14:23:50 -0600 |
commit | 7984e6f6fd235b033adb933b2030b9ba9bc66eeb (patch) | |
tree | 14c8d6ae0301aa44c88277a13fc6a20f29430c41 /caddyconfig | |
parent | d70608b65612ccf1e61ef4d7e4686ec2d6d9891f (diff) | |
download | caddy-7984e6f6fd235b033adb933b2030b9ba9bc66eeb.tar.gz caddy-7984e6f6fd235b033adb933b2030b9ba9bc66eeb.zip |
httpcaddyfile: Fix TLS automation policy merging with get_certificate (#5896)
Diffstat (limited to 'caddyconfig')
-rw-r--r-- | caddyconfig/httpcaddyfile/tlsapp.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/caddyconfig/httpcaddyfile/tlsapp.go b/caddyconfig/httpcaddyfile/tlsapp.go index 927f225df..cb947a6e4 100644 --- a/caddyconfig/httpcaddyfile/tlsapp.go +++ b/caddyconfig/httpcaddyfile/tlsapp.go @@ -582,6 +582,7 @@ outer: // eaten up by the one with subjects; and if both have subjects, we // need to combine their lists if reflect.DeepEqual(aps[i].IssuersRaw, aps[j].IssuersRaw) && + reflect.DeepEqual(aps[i].ManagersRaw, aps[j].ManagersRaw) && bytes.Equal(aps[i].StorageRaw, aps[j].StorageRaw) && aps[i].MustStaple == aps[j].MustStaple && aps[i].KeyType == aps[j].KeyType && |