Show Key Content
This commit is contained in:
parent
910c87233a
commit
1cceda03df
|
|
@ -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
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue