Nginx example: Don't try to resolve ipv6 localhost
This commit is contained in:
parent
ceb71ab00d
commit
b89ac21546
1 changed files with 1 additions and 1 deletions
|
@ -13,6 +13,6 @@ server {
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
|
||||||
proxy_pass http://localhost:8010;
|
proxy_pass http://127.0.0.1:8010;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue