html-playground-ssl/ssl/index.js
2025-05-08 08:50:46 +07:00

7 lines
No EOL
194 B
JavaScript

const fs = require('fs');
const path = require('path');
module.exports = {
cert: fs.readFileSync(path.join(__dirname, 'koda.cer')),
key: fs.readFileSync(path.join(__dirname, 'koda.key'))
};