hi
i'd like to know if its possible to have nginx bind to an ipv4 port but then proxy to a localhost ipv6 server, like:
location /foo/ {
proxy_pass http://[::1]:3000;
}
nginx doesn't like that format...any ideas how to proxy from ipv4 -> ipv6 ?
thanks
brad