From 44a3c197a9aac1888d6bdb88e4a2f1234ecc25b5 Mon Sep 17 00:00:00 2001 From: Zelleg Date: Mon, 18 Oct 2021 10:34:15 +0200 Subject: [PATCH] update --- src/app.module.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app.module.ts b/src/app.module.ts index ec33692..aea8a66 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -18,6 +18,11 @@ import { TypeOrmModule, TypeOrmModuleOptions } from '@nestjs/typeorm'; entities: [__dirname + '/**/*.entity{.ts,.js}'], synchronize: true, logging: configService.isLoggingDb ? 'all' : false, + extra: { + ssl: { + rejectUnauthorized: false + }, + }, }), inject: [ConfigService], }),