memprintf(&err, "certificate '%s' does not exist!", cert_path);
goto error;
}
+ if (store->multi) {
+ memprintf(&err, "certificate '%s' is a bundle. You can disable the bundle merging with the directive 'ssl-load-extra-files' in the global section.", cert_path);
+ goto error;
+ }
if (store->ckch == NULL || store->ckch->cert == NULL) {
memprintf(&err, "certificate '%s' is empty!", cert_path);
goto error;
memprintf(&err, "certificate '%s' does not exist!", cert_path);
goto error;
}
+ if (store->multi) {
+ memprintf(&err, "certificate '%s' is a bundle. You can disable the bundle merging with the directive 'ssl-load-extra-files' in the global section.", cert_path);
+ goto error;
+ }
if (store->ckch == NULL || store->ckch->cert == NULL) {
memprintf(&err, "certificate '%s' is empty!", cert_path);
goto error;