-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
66 lines (51 loc) · 1.8 KB
/
Copy pathapp.js
File metadata and controls
66 lines (51 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const express = require('express');
express.static.mime.types['wasm'] = 'application/wasm';
const fs = require("fs");
const path = require('path');
const favicon = require('serve-favicon');
const bodyParser = require('body-parser');
const cors = require('cors');
const demos = require('./routes/demos');
const api = require('./routes/api');
const options = {
key: fs.readFileSync('c:/creds/livecode.key'),
cert: fs.readFileSync('c:/creds/livecode.crt')
};
const app = express();
const server = require('https').createServer(options, app);
const io = require('socket.io')(server);
require('./sockets/collaborator.js')(io);
app.all('*', cors());
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.set('trust proxy', 1);
app.use(function (req, res, next) {
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept');
next();
});
// app.use(favicon(path.join(__dirname, 'public', '/images/favicon.ico')));
app.use(bodyParser.json({limit: '50mb'}));
app.use(bodyParser.urlencoded({ limit: '50mb', extended: true }));
app.use(express.static('public'));
// app.use('/', index);
app.use('/api', api);
app.use('/', demos);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
app.use(function (err, req, res, next) {
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
res.status(err.status || 500);
res.render('error/general-error');
//winstonLogHandler(err);
});
const PORT = process.env.PORT || 443;
server.listen(PORT, () => {
console.log('\nCommunicator Service Website\nApp is listening on port', server.address().port);
});
module.exports = app;