import { Express } from 'express'; import { readFileSync } from 'fs'; import * as http from 'http'; import * as https from 'https'; import { configService, SslConf } from '../config/env.config'; export class ServerUP { static #app: Express; static set app(e: Express) { this.#app = e; } static get https() { const { FULLCHAIN, PRIVKEY } = configService.get('SSL_CONF'); return https.createServer( { cert: readFileSync(FULLCHAIN), key: readFileSync(PRIVKEY), }, ServerUP.#app, ); } static get http() { return http.createServer(ServerUP.#app); } }