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