[#8] Anonymize user IPs
This commit is contained in:
parent
03386f4b5d
commit
8c1bfeb0d8
1 changed files with 2 additions and 2 deletions
4
dist/nginx.conf
vendored
4
dist/nginx.conf
vendored
|
@ -135,8 +135,8 @@ server {
|
|||
|
||||
location @proxy {
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Real-IP 127.0.0.1;
|
||||
proxy_set_header X-Forwarded-For 127.0.0.1;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header Proxy "";
|
||||
proxy_pass_header Server;
|
||||
|
|
Loading…
Reference in a new issue