Merge pull request #4717 from DSpace/backport-4634-to-dspace-7_x

[Port dspace-7_x] server.ts: remove port and host fallbacks in run
This commit is contained in:
Tim Donohue
2025-09-10 15:51:18 -05:00
committed by GitHub

View File

@@ -559,8 +559,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();