Merge pull request 'API FIX' (#2) from dev into master
Reviewed-on: https://git.pooper.social/verita84/picluster/pulls/2
This commit is contained in:
commit
c94054f61d
@ -15,9 +15,7 @@ let config = JSON.parse(fs.readFileSync((process.env.PICLUSTER_CONFIG ? process.
|
|||||||
process.env.NODE_TLS_REJECT_UNAUTHORIZED = config.ssl_self_signed ? '0' : '1';
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = config.ssl_self_signed ? '0' : '1';
|
||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
app.use(express.urlencoded({
|
app.use(express.urlencoded({ extended: true }));
|
||||||
limit: '20mb'
|
|
||||||
}));
|
|
||||||
app.use(express.json({
|
app.use(express.json({
|
||||||
limit: '20mb'
|
limit: '20mb'
|
||||||
}));
|
}));
|
||||||
@ -1372,4 +1370,4 @@ if (config.ssl && config.ssl_cert && config.ssl_key) {
|
|||||||
webconsole.listen(web_port, () => {
|
webconsole.listen(web_port, () => {
|
||||||
console.log('Listening on port %d', web_port);
|
console.log('Listening on port %d', web_port);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user