Merge pull request #4634 from alanorth/server-setup

server.ts: remove port and host fallbacks in run
This commit is contained in:
Tim Donohue
2025-09-10 14:35:16 -05:00
committed by GitHub

View File

@@ -560,8 +560,8 @@ function createHttpsServer(keys) {
* Create an HTTP server with the configured port and host.
*/
function run() {
const port = environment.ui.port || 4000;
const host = environment.ui.host || '/';
const port = environment.ui.port;
const host = environment.ui.host;
// Start up the Node server
const server = app();