fix: fix https config
This commit is contained in:
@@ -32,7 +32,8 @@ export const runServer = async (port?: number, listenPath = '127.0.0.1') => {
|
||||
});
|
||||
} else {
|
||||
app.listen(_port, listenPath, () => {
|
||||
console.log(`Server is running on https://${listenPath}:${_port}`);
|
||||
const protocol = assistantConfig.getHttps().protocol;
|
||||
console.log(`Server is running on ${protocol}://${listenPath}:${_port}`);
|
||||
});
|
||||
}
|
||||
app.server.on(proxyRoute);
|
||||
|
||||
Reference in New Issue
Block a user