Anyone got a DO Load Balancer w/ Proxy Protocol to work with a Droplet running a Express.js website/API? As soon as I turn on proxy protocol, the LB droplet status goes unhealthy. I’ve tried adding app.set('trust proxy', true);
to my Express setup as per docs (https://expressjs.com/en/guide/behind-proxies.html) but no luck.
I really don’t want to run NGINX or Apache in-front of my Dockerized Node app.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
It looks like the http, https, or http2 package you are using from Node internals need wrapped with something like this fork https://github.com/cusspvz/proxywrap. I have yet to test, but this seems promising.
I found the answer - just use the https://www.npmjs.com/package/proxywrap package.
This comment has been deleted