Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .devfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ components:
image: registry.redhat.io/devspaces/udi-rhel9
endpoints:
- exposure: public
protocol: https
name: application-index
targetPort: 8080
- exposure: none
Expand Down
2 changes: 1 addition & 1 deletion bin/www
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const server = http.createServer(app);
* Listen on provided port, on all network interfaces.
*/

server.listen(port);
server.listen(port, '0.0.0.0');
server.on('error', onError);
server.on('listening', onListening);

Expand Down
Loading