diff --git a/app.js b/app.js index 6a84523..742d6d1 100644 --- a/app.js +++ b/app.js @@ -8,8 +8,8 @@ const https = require('https'); const fs = require('fs'); const hostname = 'petrov.nexus'; -const httpPort = 80; -const httpsPort = 443; +const httpPort = 4080; +const httpsPort = 4443; const httpsOptions = { key: fs.readFileSync('./archive/server.key'), @@ -61,7 +61,7 @@ app.use(session({ secret: 'work hard', resave: true, saveUninitialized: false, - store: MongoStore.create({mongoUrl: mongoDB}) + store: MongoStore.create({ mongoUrl: mongoDB }) })); //Shranimo sejne spremenljivke v locals //Tako lahko do njih dostopamo v vseh view-ih (glej layout.hbs) @@ -80,19 +80,19 @@ app.use('/api/movies', movieRouter); app.use('/mail', mailRouter); // catch 404 and forward to error handler -app.use(function(req, res, next) { +app.use(function (req, res, next) { next(createError(404)); }); // error handler -app.use(function(err, req, res, next) { +app.use(function (err, req, res, next) { // set locals, only providing error in development res.locals.message = err.message; res.locals.error = req.app.get('env') === 'development' ? err : {}; // render the error page res.status(err.status || 500); - res.render('error', {title:'Error'}); + res.render('error', { title: 'Error' }); }); httpServer.listen(httpPort, () => { @@ -102,7 +102,4 @@ httpsServer.listen(httpsPort, () => { console.log(`Server running at https://${hostname}:${httpsPort}/`); }); - - - -module.exports = app; +module.exports = app; \ No newline at end of file