2021-09-10 06:17:20 -07:00
/ *
2022-12-07 00:22:36 -08:00
* ⚠ ️ Deprecated : Changed to healthcheck . go , it will be deleted in the future .
2021-09-10 06:17:20 -07:00
* This script should be run after a period of time ( 180 s ) , because the server may need some time to prepare .
* /
2022-01-11 09:44:01 -08:00
const { FBSD } = require ( "../server/util-server" ) ;
2021-11-01 10:13:05 -07:00
2021-09-07 01:06:28 -07:00
process . env . NODE _TLS _REJECT _UNAUTHORIZED = "0" ;
let client ;
2021-11-01 10:13:05 -07: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 01:06:28 -07:00
client = require ( "https" ) ;
} else {
client = require ( "http" ) ;
}
2021-11-01 10:13:05 -07: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 (::)
2023-02-13 08:46:22 -08:00
let hostname = process . env . UPTIME _KUMA _HOST ;
2021-11-01 10:13:05 -07:00
2022-01-11 04:39:45 -08:00
// Also read HOST if not *BSD, as HOST is a system environment variable in FreeBSD
2022-01-11 09:44:01 -08:00
if ( ! hostname && ! FBSD ) {
2021-11-01 10:13:05 -07:00
hostname = process . env . HOST ;
}
2023-02-13 08:46:22 -08:00
const port = parseInt ( process . env . UPTIME _KUMA _PORT || process . env . PORT || 3001 ) ;
2021-11-01 10:13:05 -07:00
2021-08-08 22:49:37 -07:00
let options = {
2023-02-13 08:46:22 -08:00
host : hostname || "127.0.0.1" ,
2021-11-01 10:13:05 -07:00
port : port ,
2021-09-08 20:41:28 -07:00
timeout : 28 * 1000 ,
2021-07-17 07:37:35 -07:00
} ;
2021-09-07 01:06:28 -07:00
let request = client . request ( options , ( res ) => {
console . log ( ` Health Check OK [Res Code: ${ res . statusCode } ] ` ) ;
2021-11-02 07:03:02 -07:00
if ( res . statusCode === 302 ) {
2021-08-08 22:49:37 -07:00
process . exit ( 0 ) ;
} else {
process . exit ( 1 ) ;
}
2021-07-17 07:37:35 -07:00
} ) ;
2021-09-07 01:06:28 -07:00
2021-07-17 07:37:35 -07:00
request . on ( "error" , function ( err ) {
2021-09-07 01:06:28 -07:00
console . error ( "Health Check ERROR" ) ;
2021-08-08 22:49:37 -07:00
process . exit ( 1 ) ;
2021-07-17 07:37:35 -07:00
} ) ;
2021-09-07 01:06:28 -07:00
2021-07-17 07:37:35 -07:00
request . end ( ) ;