Show all posts by user
Introduce yourselves
Page 1 of 1 Pages: 1
Results 1 - 3 of 3
presuming i have a request with args of the form
?ids=1,2,3,4,5,6,7
etc (a list of tokens)
i'm interested in breaking up that list and forming a query for each to an upstream server
i.e.
http://upstream/id=1
http://upstream/id=2
etc
and then combining all the result together to respond to the original request
i'm wondering if this is a problem people have run into before,
by
b7j0c
-
How to...
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
by
b7j0c
-
How to...