You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
execSync(`${preCommand}'/CN=www.camicroscope.com/O=caMicroscope Local Instance Key./C=US'${postCommand}`);
}catch(err){
console.log({err: err});
}
}
I had the following queries about the following lines.
is the sole purpose of these lines is to create the keys programmatically at runtime? afaik this should be done in the docker-compose step and not during runtime?
If the above is false (i.e. these have separate responsibilities), then the keys should be generated when either of the file is missing right? The code will execute only if both of the files are missing.
also, is there any particular reason for dividing the string into three segments, pre, mid and post?
The text was updated successfully, but these errors were encountered:
Caracal/handlers/authHandlers.js
Lines 23 to 29 in 91fec6d
I had the following queries about the following lines.
The text was updated successfully, but these errors were encountered: