improve: tell user that the WebUI is available
This commit is contained in:
parent
a3c73459eb
commit
a987b7a17f
@ -26,6 +26,10 @@ void (async (): Promise<void> => {
|
||||
logger.info("HTTP server started on port " + httpPort);
|
||||
https.createServer(options, app).listen(httpsPort, () => {
|
||||
logger.info("HTTPS server started on port " + httpsPort);
|
||||
|
||||
logger.info(
|
||||
"Access the WebUI in your browser at http://localhost" + (httpPort == 80 ? "" : ":" + httpPort)
|
||||
);
|
||||
});
|
||||
});
|
||||
})();
|
||||
|
Loading…
x
Reference in New Issue
Block a user