Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
api.blastastic.com
/
blastastic-complete
/
next-frontend
/
Filename :
httpsServer.js
back
Copy
const https = require('https'); const fs = require('fs'); const { createServer } = require('http'); const { parse } = require('url'); const next = require('next'); const dev = process.env.NODE_ENV !== 'production'; const app = next({ dev }); const handle = app.getRequestHandler(); const httpsOptions = { key: fs.readFileSync('./localhost.key'), cert: fs.readFileSync('./localhost.crt'), }; app.prepare().then(() => { createServer((req, res) => { const parsedUrl = parse(req.url, true); handle(req, res, parsedUrl); }).listen(80, (err) => { if (err) throw err; console.log('> Ready on http://localhost:80'); }); }); https .createServer(httpsOptions, (req, res) => { const parsedUrl = parse(req.url, true); handle(req, res, parsedUrl); }) .listen(443, (err) => { if (err) throw err; console.log('> Ready on https://localhost:443'); });