2021-09-10 14:17:20 +01:00
/ *
* This script should be run after a period of time ( 180 s ) , because the server may need some time to prepare .
* /
2021-11-01 17:13:05 +00:00
const { FBSD } = require ( "../server/util-server" ) ;
2021-09-07 09:06:28 +01:00
process . env . NODE _TLS _REJECT _UNAUTHORIZED = "0" ;
let client ;
2021-11-01 17:13:05 +00:00
const sslKey = process . env . UPTIME _KUMA _SSL _KEY || process . env . SSL _KEY || undefined ;
const sslCert = process . env . UPTIME _KUMA _SSL _CERT || process . env . SSL _CERT || undefined ;
if ( sslKey && sslCert ) {
2021-09-07 09:06:28 +01:00
client = require ( "https" ) ;
} else {
client = require ( "http" ) ;
}
2021-11-01 17:13:05 +00:00
// If host is omitted, the server will accept connections on the unspecified IPv6 address (::) when IPv6 is available and the unspecified IPv4 address (0.0.0.0) otherwise.
// Dual-stack support for (::)
let hostname = process . env . UPTIME _KUMA _HOST ;
// Also read HOST if not FreeBSD, as HOST is a system environment variable in FreeBSD
if ( ! hostname && ! FBSD ) {
hostname = process . env . HOST ;
}
const port = parseInt ( process . env . UPTIME _KUMA _PORT || process . env . PORT || 3001 ) ;
2021-08-09 06:49:37 +01:00
let options = {
2021-11-01 17:13:05 +00:00
host : hostname || "127.0.0.1" ,
port : port ,
2021-09-09 04:41:28 +01:00
timeout : 28 * 1000 ,
2021-07-17 15:37:35 +01:00
} ;
2021-09-07 09:06:28 +01:00
let request = client . request ( options , ( res ) => {
console . log ( ` Health Check OK [Res Code: ${ res . statusCode } ] ` ) ;
if ( res . statusCode === 200 ) {
2021-08-09 06:49:37 +01:00
process . exit ( 0 ) ;
} else {
process . exit ( 1 ) ;
}
2021-07-17 15:37:35 +01:00
} ) ;
2021-09-07 09:06:28 +01:00
2021-07-17 15:37:35 +01:00
request . on ( "error" , function ( err ) {
2021-09-07 09:06:28 +01:00
console . error ( "Health Check ERROR" ) ;
2021-08-09 06:49:37 +01:00
process . exit ( 1 ) ;
2021-07-17 15:37:35 +01:00
} ) ;
2021-09-07 09:06:28 +01:00
2021-07-17 15:37:35 +01:00
request . end ( ) ;