We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c42417 commit a4e63efCopy full SHA for a4e63ef
src/main.ts
@@ -10,7 +10,7 @@ import { HttpsOptions } from '@nestjs/common/interfaces/external/https-options.i
10
11
function getHttpsOptions(): HttpsOptions | null {
12
const keyPath = './secrets/ssl.key';
13
- const certPath = './secrets/cert.key';
+ const certPath = './secrets/ssl.cert';
14
if (!existsSync(keyPath) || !existsSync(certPath)) {
15
Logger.log('HTTPS config not found. Fall back to HTTP');
16
return null;
0 commit comments