Hi there, I have SSR page which makes a request to my backend retrieves some data and uses that data for page to render
My backend is self hosted behind nginx as reverse proxy, I’ve played a bit with some rate limiting of my backend with detecting how much requests came from same ip address, but now I have a question.
As far as I understand, because I query my api in getServerSideProps, my backend will receive the ip address of the thingy that is hosting my Frontend, not the ip address of the user.
What do I need to do in order to tell my backend that this request is coming from the user that requested the SSR page ?