Skip to content

Commit ffd1223

Browse files
author
Dustin Popp
authored
docs: remove repeated section from performance guide (#1824)
Signed-off-by: Dustin Popp <[email protected]>
1 parent f3b92d9 commit ffd1223

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

en/advanced/best-practice-performance.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Additionally, using `uncaughtException` is officially recognized as [crude](http
143143
144144
We also don't recommend using [domains](https://nodejs.org/api/domain.html). It generally doesn't solve the problem and is a deprecated module.
145145
146-
## Things to do in your environment / setup
146+
## Things to do in your environment / setup
147147
{#in-environment}
148148
149149
Here are some things you can do in your system environment to improve your app's performance:
@@ -309,5 +309,3 @@ With load balancing, you might have to ensure that requests that are associated
309309
A reverse proxy sits in front of a web app and performs supporting operations on the requests, apart from directing requests to the app. It can handle error pages, compression, caching, serving files, and load balancing among other things.
310310
311311
Handing over tasks that do not require knowledge of application state to a reverse proxy frees up Express to perform specialized application tasks. For this reason, it is recommended to run Express behind a reverse proxy like [Nginx](https://www.nginx.org/) or [HAProxy](https://www.haproxy.org/) in production.
312-
313-
Handing over tasks that do not require knowledge of application state to a reverse proxy frees up Express to perform specialized application tasks. For this reason, it is recommended to run Express behind a reverse proxy like [Nginx](https://www.nginx.com/) or [HAProxy](http://www.haproxy.org/) in production.

0 commit comments

Comments
 (0)