Skip to content

Commit

Permalink
Merge pull request #2196 from Scrip7/patch-2
Browse files Browse the repository at this point in the history
docs(performance): broken fastify guide link
  • Loading branch information
kamilmysliwiec authored Feb 4, 2022
2 parents 9b801da + da0057b commit c6e212f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/techniques/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function bootstrap() {
bootstrap();
```

By default, Fastify listens only on the `localhost 127.0.0.1` interface ([read more](https://www.fastify.io/docs/latest/Getting-Started/#your-first-server)). If you want to accept connections on other hosts, you should specify `'0.0.0.0'` in the `listen()` call:
By default, Fastify listens only on the `localhost 127.0.0.1` interface ([read more](https://www.fastify.io/docs/latest/Guides/Getting-Started/#your-first-server)). If you want to accept connections on other hosts, you should specify `'0.0.0.0'` in the `listen()` call:

```typescript
async function bootstrap() {
Expand Down

0 comments on commit c6e212f

Please sign in to comment.