UNPKG

vhttps

Version:

Virtual Secure Servers. Hosting multiple HTTPS sites on single server/port WITHOUT reverse proxy. Can integrate with Express and vhost

18 lines (15 loc) 223 B
/*! * vhttps * Copyright(c) 2018 Kevin Qian * MIT Licensed */ const { Server, createServer, } = require('./lib/vhttps'); const init = require('./lib/init'); module.exports = { Server, createServer, init, };