commit | d4f9a60ee2648c9552503d7742530e64d28ab027 | [log] [tgz] |
---|---|---|
author | Emmanuel Hocdet <manu@gandi.net> | Thu Oct 24 11:32:47 2019 +0200 |
committer | William Lallemand <wlallemand@haproxy.org> | Thu Nov 28 11:11:20 2019 +0100 |
tree | 6bd416eb9f5102edb4557c8721a8005250850c43 | |
parent | cefbbd98116cc97b43711b784638789c5557e7e6 [diff] |
MINOR: ssl: deduplicate ca-file Typically server line like: 'server-template srv 1-1000 *:443 ssl ca-file ca-certificates.crt' load ca-certificates.crt 1000 times and stay duplicated in memory. Same case for bind line: ca-file is loaded for each certificate. Same 'ca-file' can be load one time only and stay deduplicated in memory. As a corollary, this will prevent file access for ca-file when updating a certificate via CLI.