diff --git a/src/index.ts b/src/index.ts index 55b37ba3..6bb6b6f2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -26,6 +26,10 @@ void (async (): Promise => { 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) + ); }); }); })();