Update ServerService.ts

This commit is contained in:
syuilo 2022-12-08 13:40:42 +09:00 committed by GitHub
parent 8b4ba370f7
commit 686bea6e2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,6 +150,6 @@ export class ServerService {
} }
}); });
fastify.listen({ port: this.config.port, host: this.config.host ?? 'localhost' }); fastify.listen({ port: this.config.port, host: '0.0.0.0' });
} }
} }