Fix healthcheck and some messages

This commit is contained in:
Сашка724ая 2023-03-11 20:57:16 +11:00
parent 02f218389b
commit 9a08aa2ab5
No known key found for this signature in database
GPG key ID: 10612D4360CCE133
2 changed files with 24 additions and 8 deletions

View file

@ -10,16 +10,25 @@ if (config.https) {
const port = require('./src/services/port');
const host = require('./src/services/host');
const url = `http://${host}:${port}/api/health-check`;
const options = { timeout: 2000 };
const request = http.request(url, options, res => {
let options = {timeout: 2000};
const callback = res => {
console.log(`STATUS: ${res.statusCode}`);
if (res.statusCode === 200) {
process.exit(0);
} else {
process.exit(1);
}
});
};
let request;
if (port !== 0) { // TCP socket.
const url = `http://${host}:${port}/api/health-check`;
request = http.request(url, options, callback);
} else { // Unix socket.
options.socketPath = host;
options.path = '/api/health-check';
request = http.request(options, callback);
}
request.on("error", err => {
console.log("ERROR");
process.exit(1);

13
src/www
View file

@ -100,13 +100,14 @@ async function startTrilium() {
*/
httpServer.keepAliveTimeout = 120000 * 5;
if (port !== 0) {
const listenTcp = port !== 0;
if (listenTcp) {
httpServer.listen(port, host); // TCP socket.
} else {
httpServer.listen(host); // Unix socket.
}
httpServer.on('error', error => {
if (error.syscall !== 'listen') {
if (!listenTcp || error.syscall !== 'listen') {
throw error;
}
@ -128,7 +129,13 @@ async function startTrilium() {
}
)
httpServer.on('listening', () => log.info(`Listening on port ${httpServer.address().port}`));
httpServer.on('listening', () => {
if (listenTcp) {
log.info(`Listening on port ${port}`)
} else {
log.info(`Listening on unix socket ${host}`)
}
});
ws.init(httpServer, sessionParser);