Remove unused file

This commit is contained in:
Rene Vergara 2022-07-14 15:44:53 -05:00
parent 4aa7cbf7c2
commit 51993a21a8
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
var fs = require('fs');
var http = require('http');
//var https = require('https');
//var certificate = fs.readFileSync('/etc/letsencrypt/live/zgo.cash/fullchain.pem');
//var privateKey = fs.readFileSync('/etc/letsencrypt/live/zgo.cash/privkey.pem');
//var credentials = {key: privateKey, cert: certificate};
const app = require('./backend/app');
const port = 3000;
app.set('port', port);
const httpServer = http.createServer(app);
//const httpsServer = https.createServer(credentials, app);
httpServer.listen(port);
//httpsServer.listen(port);