Commit 7a28a0dc authored by simon's avatar simon

fix(config): use __dirname to resolve path to ssl certs

parent 5519391a
......@@ -2,7 +2,7 @@
const fs = require('fs');
const path = require('path');
const SSL_CERT_DIRECTORY = './ssl/cert';
const SSL_CERT_DIRECTORY = path.join(__dirname, './ssl/cert');
module.exports = {
port: 1812,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment