expressjs-structure
expressjs-structure copied to clipboard
Error: ENOENT: no such file or directory, open '/etc/ssl/cert.pem'
Tried to clone the repo. Did an npm install. Then npm start. Received this error.
After creating a self signed certificate for the server, going to this url, I am getting this error.
If anyone else is starting out here and getting the same error, simple remove
ssl: {
mode: 'VERIFY_IDENTITY',
ca: fs.readFileSync('/etc/ssl/cert.pem', 'utf-8'),
}
from src/configs/db.config.js
Hope it will solve your issue