Merge pull request #4718 from DSpace/backport-4634-to-dspace-8_x

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

View File

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