oneuptime/Nginx/Index.ts
Simon Larsen d072a29cf8
refactor: Add WriteCustomCertsToDiskJob to Nginx/Index.ts and update UptimeUtil to round uptime percentage to specified precision
- The WriteCustomCertsToDiskJob has been added to the Nginx/Index.ts file to handle writing custom certificates to disk.
- The UptimeUtil has been updated to round the uptime percentage to the specified precision.
2024-10-09 19:24:17 +01:00

54 lines
1.5 KiB
TypeScript

import AcmeWriteCertificatesJob from "./Jobs/AcmeWriteCertificates";
import WriteCustomCertsToDiskJob from "./Jobs/WriteCustomCertsToDisk";
import { PromiseVoidFunction } from "Common/Types/FunctionTypes";
import PostgresAppInstance from "Common/Server/Infrastructure/PostgresDatabase";
import InfrastructureStatus from "Common/Server/Infrastructure/Status";
import logger from "Common/Server/Utils/Logger";
import App from "Common/Server/Utils/StartServer";
process.env["SERVICE_NAME"] = "ingress";
const APP_NAME: string = process.env["SERVICE_NAME"];
const init: PromiseVoidFunction = async (): Promise<void> => {
try {
const statusCheck: PromiseVoidFunction = async (): Promise<void> => {
return await InfrastructureStatus.checkStatus({
checkClickhouseStatus: false,
checkPostgresStatus: true,
checkRedisStatus: false,
});
};
// init the app
await App.init({
appName: APP_NAME,
port: undefined,
isFrontendApp: false,
statusOptions: {
liveCheck: statusCheck,
readyCheck: statusCheck,
},
});
// connect to the database.
await PostgresAppInstance.connect();
AcmeWriteCertificatesJob.init();
WriteCustomCertsToDiskJob.init();
// add default routes
await App.addDefaultRoutes();
} catch (err) {
logger.error("App Init Failed:");
logger.error(err);
throw err;
}
};
init().catch((err: Error) => {
logger.error(err);
logger.error("Exiting node process");
process.exit(1);
});