mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-06 17:44:11 +00:00
Merge pull request #4634 from alanorth/server-setup
server.ts: remove port and host fallbacks in run
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user