Closed
Bug 1638039
Opened 4 years ago
Closed 4 years ago
Forward the client's IP using `X-Forwarded-For` to the service.
Categories
(Cloud Services :: Operations: Firefox Profiler, task)
Cloud Services
Operations: Firefox Profiler
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: julienw, Assigned: oremj)
Details
The security checklist asks that the client's IP is forwarded to the underlying service using the header X-Forwarded-For
.
Assignee | ||
Comment 1•4 years ago
|
||
This is already set up.
location / {
proxy_set_header x-forwarded-proto $http_x_forwarded_proto;
proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://upstream_docker;
}
Status: NEW → RESOLVED
Closed: 4 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•