Suggestion: IP Headers > server.requestIP for Bun
Closed this issue · 3 comments
uhidontkno commented
Exactly what the title says, use IP headers (eg. X-Forwarded-For
) over server.requestIP
if the IP headers exist.
gaurishhs commented
Why is that so? You can disable requestIP by setting headersOnly
to true in the options tho but i dont see a reason to use headers over socket address
uhidontkno commented
Why is that so?
Makes things easier because you'd need to do something like this to not potentially break things if one would want to deploy an Elysia app that uses elysia-ip behind a reverse proxy (without changing the code)
app.use(ip({ headersOnly: Boolean(process.env.PROXIED || "false") }));
gaurishhs commented
I think Elysia's primary focus is still the runtime. Cf and Fastly work due to WinterCG compatibility.