Show Key Content

This commit is contained in:
Josef 2025-11-11 11:59:48 +01:00
parent 910c87233a
commit 1cceda03df
1 changed files with 8 additions and 2 deletions

View File

@ -96,12 +96,18 @@ export class UserManagementServer
} }
else 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( this._app = Fastify(
{ {
https: https:
{ {
key:FilesSync.loadUTF8( this._settings.httpsKeyPath ), key:httpsKey,
cert:FilesSync.loadUTF8( this._settings.httpsCertPath ) cert:httpsCert
} }
} }
); );