diff options
| author | lambda <lain@soykaf.club> | 2019-05-24 09:54:45 +0000 |
|---|---|---|
| committer | lambda <lain@soykaf.club> | 2019-05-24 09:54:45 +0000 |
| commit | 6499adc6a83b4064f7283de3c729053e62ade7b2 (patch) | |
| tree | 94f316fd8392ef293037a102f5c2dc95fe504280 /installation/pleroma.nginx | |
| parent | 75e78d4e239a5c999306e92b181b0e29c52dc9db (diff) | |
| parent | 356c047759735bcd984ebd44059a21a3cf22af0e (diff) | |
| download | pleroma-6499adc6a83b4064f7283de3c729053e62ade7b2.tar.gz pleroma-6499adc6a83b4064f7283de3c729053e62ade7b2.zip | |
Merge branch 'reverse_proxy_upstream_v4_fix' into 'develop'
explicitly set reverse proxy upstream to IPv4
Closes #930
See merge request pleroma/pleroma!1197
Diffstat (limited to 'installation/pleroma.nginx')
| -rw-r--r-- | installation/pleroma.nginx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index cc75d78b2..7425da33f 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -69,7 +69,9 @@ server { proxy_set_header Connection "upgrade"; proxy_set_header Host $http_host; - proxy_pass http://localhost:4000; + # this is explicitly IPv4 since Pleroma.Web.Endpoint binds on IPv4 only + # and `localhost.` resolves to [::0] on some systems: see issue #930 + proxy_pass http://127.0.0.1:4000; client_max_body_size 16m; } |
