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 } } );