From fe37529315ac80644c422331cae29b6140126a1a Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Thu, 21 Sep 2023 14:05:32 +0200 Subject: [PATCH] comment out https --- app.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app.js b/app.js index f2113c0..004d0ab 100644 --- a/app.js +++ b/app.js @@ -9,13 +9,13 @@ const fs = require('fs'); const hostname = 'petrov.nexus'; const httpPort = 4080; -const httpsPort = 443; +//const httpsPort = 443; -const httpsOptions = { - key: fs.readFileSync('./archive/server.key'), - cert: fs.readFileSync('./archive/petrov_nexus.crt'), - ca: fs.readFileSync('./archive/petrov_nexus.ca-bundle') -}; +// const httpsOptions = { +// key: fs.readFileSync('./archive/server.key'), +// cert: fs.readFileSync('./archive/petrov_nexus.crt'), +// ca: fs.readFileSync('./archive/petrov_nexus.ca-bundle') +// }; // vključimo mongoose in ga povežemo z MongoDB var mongoose = require('mongoose'); @@ -30,7 +30,7 @@ db.on('error', console.error.bind(console, 'MongoDB connection error:')); var app = express(); const httpServer = http.createServer(app); -const httpsServer = https.createServer(httpsOptions, app); +//const httpsServer = https.createServer(httpsOptions, app); // view engine setup app.set('views', path.join(__dirname, 'views')); @@ -71,8 +71,8 @@ app.use(function (err, req, res, next) { httpServer.listen(httpPort, () => { console.log(`Server running at http://${hostname}:${httpPort}/`); }); -httpsServer.listen(httpsPort, () => { - console.log(`Server running at https://${hostname}:${httpsPort}/`); -}); +// httpsServer.listen(httpsPort, () => { +// console.log(`Server running at https://${hostname}:${httpsPort}/`); +// }); module.exports = app; \ No newline at end of file