I use reverse proxy from the following module in node app-:
https://github.com/nodejitsu/node-http-proxy
My question is whether I need to modify the header for state of reverse proxy to work like standard?
I use reverse proxy from the following module in node app-:
https://github.com/nodejitsu/node-http-proxy
My question is whether I need to modify the header for state of reverse proxy to work like standard?
According to my basic understand, you need to use additional headers in order to pass information to the origin server.
try :
X-Forwarded-For //The IP address of the client.
X-Forwarded-Host //The original host requested by the client in the Host HTTP request header.
X-Forwarded-Server //The hostname of the proxy server.
this info is based on This
© 2022 - 2024 — McMap. All rights reserved.