explicitly set reverse proxy upstream to IPv4

since Pleroma.Web.Endpoint binds on IPv4 only and `localhost.` resolves to
  [::0] on some systems

  fixes #930.
This commit is contained in:
Alfie Pates 2019-05-23 22:33:27 +01:00
commit 356c047759
3 changed files with 10 additions and 4 deletions

View file

@ -10,7 +10,9 @@ example.tld {
gzip
proxy / 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 / 127.0.0.1:4000 {
websocket
transparent
}