I have a node/express app deployed to render.com that uses express-rate-limit to add some app-level rate limiting.
Do apps deployed on render.com have a static number of proxies? express-rate-limit suggests passing a hard number to “trust proxy”.
In testing, it seems like 3 is the magic number that correctly returns the client’s actual ip address: app.set('trust proxy', 3)
for my app.
Is that value safe to use or is the number of proxies bound to change?
Thanks!