Skip to content

Commit

Permalink
Update server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Sep 7, 2023
1 parent 336235f commit 6f083c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/users-api/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ app.get('/users', checkJwt, requiredScopes('read:users'), (req, res) => {
]);
});

app.listen(PORT, () => console.log(`API Server listening on port ${PORT}`));
app.listen(PORT, '0.0.0.0', () => console.log(`API Server listening on port ${PORT}`));

0 comments on commit 6f083c4

Please sign in to comment.