juml/example.js
jusax23 37047cee22
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
initial
2023-02-25 18:35:59 +01:00

33 lines
No EOL
849 B
JavaScript

import juml from "./dist/juml.js";
const conf_struct = {
System:{
PORT:{type:"number",default:80},
URL:{type:"string",default:"https://google.de/",comment:"The exposed URL:"}
},
ssl:{
enable:{type:"boolean",default:true,env:"FMI_SSL_ENABELED"},
privkey:{type:"string",default:"privkey.pem"},
cert:{type:"string",default:"cert.pem"},
chain:{type:"string",default:"chain.pem"}
}
};
console.log()
const mc = new juml(conf_struct);
mc.connect("./config.juml");
if(mc.get("ssl","enable")){
console.log("SSL Enabled");
mc.readPathes(mc.get("ssl","privkey"),mc.get("ssl","cert"),mc.get("ssl","chain"))
.then(([privkey,cert,chain])=>{
console.log("privkey: ",privkey,"\ncert: ",cert,"\nchain: ",chain);
}).catch(err=>{
console.error(err);
process.exit();
});
}else{
console.log("SSL Disabled");
}