summaryrefslogtreecommitdiff
path: root/installation
diff options
context:
space:
mode:
authorminibikini <egor@kislitsyn.com>2019-09-27 21:59:23 +0000
committerHaelwenn <contact+git.pleroma.social@hacktivis.me>2019-09-27 21:59:23 +0000
commitf9380289eb251c818e87e8f0ad0a41fc8bdd90aa (patch)
tree5bb67874c8b34ad13f25055938826475f38e2301 /installation
parent92d08d4113c4de09cd8d736ed1a0349745866eef (diff)
Add `remote_ip` plug
Diffstat (limited to 'installation')
-rw-r--r--installation/pleroma.nginx1
1 files changed, 1 insertions, 0 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx
index 4da9918ca..7f48b614b 100644
--- a/installation/pleroma.nginx
+++ b/installation/pleroma.nginx
@@ -70,6 +70,7 @@ server {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# this is explicitly IPv4 since Pleroma.Web.Endpoint binds on IPv4 only
# and `localhost.` resolves to [::0] on some systems: see issue #930