immich-public-proxy/healthcheck.js
2024-10-31 19:17:58 +01:00

11 lines
233 B
JavaScript

(async () => {
require('dotenv').config()
try {
const res = await fetch(process.env.PROXY_PUBLIC_URL + '/healthcheck')
if (await res.text() === 'ok') {
process.exit(0)
}
} catch (e) { }
process.exit(1)
})()