This commit is contained in:
Tommy Parnell
2022-03-10 21:45:01 -05:00
parent de29e621fc
commit 66f78d1231

View File

@@ -25,7 +25,7 @@ fastify.post('/', function (request, reply) {
})
// Run the server!
fastify.listen(process.env.PORT || 3000, function (err, address) {
fastify.listen(process.env.PORT || 3000, '0.0.0.0', function (err, address) {
if (err) {
fastify.log.error(err)
process.exit(1)