diff --git a/server.js b/server.js index 2156618..4ebb67b 100644 --- a/server.js +++ b/server.js @@ -14,6 +14,6 @@ app.post('/upload', upload.single('photo'), (req, res) => { else throw 'error'; }); -app.listen(PORT, () => { - console.log('Listening at ' + PORT ); -}); \ No newline at end of file +app.listen(PORT, '0.0.0.0', () => { + console.log('Listening at ' + PORT); +});