[#8] Anonymize user IPs

This commit is contained in:
Sirius 2023-07-15 23:17:54 +02:00
parent 03386f4b5d
commit 8c1bfeb0d8

4
dist/nginx.conf vendored
View file

@ -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;