Nginx example: Don't try to resolve ipv6 localhost

This commit is contained in:
milaq 2020-01-12 16:07:27 +01:00
parent ceb71ab00d
commit b89ac21546
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:8010;
proxy_pass http://127.0.0.1:8010;
}
}