加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
yeti 提交于 2021-10-05 01:19 . 配置一下
const https = require('https');
const fs = require('fs');
const config = require('./config');
const app = require('./lib/endpoints');
const eventBus = require('./lib/eventBus');
/**
* Naming:
* sid: Group of files
* key: File
* fid: {sid}++{key}
*/
let server;
if(config.port) {
// HTTP Server
server = app.listen(config.port, config.iface, () => {
console.log(`PsiTransfer listening on http://${config.iface}:${config.port}`);
eventBus.emit('listen', server);
});
}
let httpsServer;
if(config.sslPort && config.sslKeyFile && config.sslCertFile) {
// HTTPS Server
const sslOpts = {
key: fs.readFileSync(config.sslKeyFile),
cert: fs.readFileSync(config.sslCertFile)
};
httpsServer = https.createServer(sslOpts, app)
.listen(config.sslPort, config.iface, () => {
console.log(`PsiTransfer listening on https://${config.iface}:${config.sslPort}`);
eventBus.emit('listen', httpsServer);
});
}
// graceful shutdown
function shutdown() {
console.log('PsiTransfer shutting down...');
eventBus.emit('shutdown', server || httpsServer);
if(server) {
server.close(() => {
server = false;
if(!server && !httpsServer) process.exit(0);
});
}
if(httpsServer) {
httpsServer.close(() => {
httpsServer = false;
if(!server && !httpsServer) process.exit(0);
});
}
setTimeout(function() {
console.log('Could not close connections in time, forcefully shutting down');
process.exit(1);
}, 15 * 1000);
}
process.on('SIGTERM', shutdown);
process.on('SIGINT', shutdown);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化