文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
多个同步服务器
多个同步服务器
Since you have full control of express instance lifecycle, it's not a problem to create a few multiple simultaneous servers (e.g. both HTTP & HTTPS). Example:
因为你已经可以完全控制express
实例的生命周期了,所以创建多个同步同步服务器(例如HTTP & HTTPS
)也是很简单的。
示例:
let httpsOptions = {
key: fs.readFileSync("./secrets/private-key.pem"),
cert: fs.readFileSync("./secrets/public-certificate.pem")
};
const server = express();
const app = NestFactory.create(ApplicationModule, server);
app.init();
http.createServer(server).listen(3000);
https.createServer(httpsOptions, server).listen(443);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论