From 9f80743da6db466c0e6a9c2e83f43c880a0ff14d Mon Sep 17 00:00:00 2001 From: "John R. Dennison" Date: Sat, 5 Nov 2022 23:26:11 -0500 Subject: [PATCH] Expose path and comments elements. --- node_app/get_cert_info.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node_app/get_cert_info.js b/node_app/get_cert_info.js index ac7a46e..ec8dce0 100644 --- a/node_app/get_cert_info.js +++ b/node_app/get_cert_info.js @@ -30,6 +30,8 @@ function get_cert_parameters(element, index, array) { var options = { hostname: element.hostname, port: (element.port ? element.port : 443), + path: (element.path ? element.path : '/'), + comment: (element.comment ? element.comment : ''), method: 'GET' };