mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 14:49:07 +00:00
d072a29cf8
- 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.
54 lines
1.5 KiB
TypeScript
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);
|
|
});
|