We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Each proxy should send additional headers with initial request so the server behind proxy knows information about the client. Check https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers the Proxy section;
Proxy
Add our own header in response so if someone checks it knows it was proxied by our reverse proxy, just like everyone else do.
header name is server, add server: bproxy [VERSION], example for nginx:
server
server: bproxy [VERSION]
The text was updated successfully, but these errors were encountered:
feat(additional headers): Adding additional http headers to request a…
db3cfb7
…nd response closes bleenco#23
a8db3e8
7bf0234
f4e2c70
…nd response closes #23
martinopresnik
Successfully merging a pull request may close this issue.
Each proxy should send additional headers with initial request so the server behind proxy knows information about the client.
Check https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers the
Proxy
section;Identifies the originating IP addresses of a client connecting to a web server through an HTTP proxy or a load balancer.
Identifies the original host requested that a client used to connect to your proxy or load balancer.
identifies the protocol (HTTP or HTTPS) that a client used to connect to your proxy or load balancer.
Add our own header in response so if someone checks it knows it was proxied by our reverse proxy,
just like everyone else do.
header name is
server
, addserver: bproxy [VERSION]
, example for nginx:The text was updated successfully, but these errors were encountered: