Skip to content

Commit 59d21bc

Browse files
authored
Merge pull request #4719 from DSpace/backport-4634-to-dspace-9_x
[Port dspace-9_x] server.ts: remove port and host fallbacks in run
2 parents 5803f61 + f6f8e07 commit 59d21bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,8 @@ function createHttpsServer(keys) {
560560
* Create an HTTP server with the configured port and host.
561561
*/
562562
function run() {
563-
const port = environment.ui.port || 4000;
564-
const host = environment.ui.host || '/';
563+
const port = environment.ui.port;
564+
const host = environment.ui.host;
565565

566566
// Start up the Node server
567567
const server = app();

0 commit comments

Comments
 (0)