From 1cceda03dfa9f1c4d36559d84d1121328d0064e0 Mon Sep 17 00:00:00 2001 From: Josef Date: Tue, 11 Nov 2025 11:59:48 +0100 Subject: [PATCH] Show Key Content --- node/users/UserManagementServer.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/node/users/UserManagementServer.ts b/node/users/UserManagementServer.ts index 5557539..1c40cf0 100644 --- a/node/users/UserManagementServer.ts +++ b/node/users/UserManagementServer.ts @@ -96,12 +96,18 @@ export class UserManagementServer } else { + let httpsKey = FilesSync.loadUTF8( this._settings.httpsKeyPath ); + let httpsCert = FilesSync.loadUTF8( this._settings.httpsCertPath ); + + RJLog.log( "Key", httpsKey ); + RJLog.log( "Cert", httpsCert ); + this._app = Fastify( { https: { - key:FilesSync.loadUTF8( this._settings.httpsKeyPath ), - cert:FilesSync.loadUTF8( this._settings.httpsCertPath ) + key:httpsKey, + cert:httpsCert } } );