Is it bad for performance to have a NGINX reverse proxy ?
-
I am running nodebb on nginx with letsencrypt. I don't see any difference from running it directly.
-
If everything is properly configured, there should be no significant difference, and in some cases, nginx will be faster.
-
Nginx reverse proxy can improve the performance of NodeBB. The simplest way to understand this is by viewing the client connection. The client bandwidth requesting something is usually slow or at least much slower than your server. With the reverse proxy in place the request will be done by the proxy and the result stored in memory. Thus it frees up capacity in NodeBB to serve another request. While Nginx caches responses and send them back to the client via their slower connection.
Copyright © 2024 NodeBB | Contributors