Re: IPv6 to IPv4

2019-12-16 Thread Rhys Ferris
THANKS SO MUCH! One of those things where I started with something someone else built without fully understanding it. Learning as I go. Thanks again! Rhys On 12/16/19 12:36 AM, Sergey Kandaurov wrote: >> On 16 Dec 2019, at 12:14, Rhys Ferris wrote: >> >> hi, sorry for the extreme delay... i was

Re: IPv6 to IPv4

2019-12-16 Thread Sergey Kandaurov
> On 16 Dec 2019, at 12:14, Rhys Ferris wrote: > > hi, sorry for the extreme delay... i was lazy. > Here's what happens when I connect to my server on IPv6 (mind you, everything > works fine if I remove the record): > 2019/12/15 22:53:44 [crit] 15662#15662: *2225 bind( here>) failed (97:

Re: IPv6 to IPv4

2019-12-16 Thread Rhys Ferris
hi, sorry for the extreme delay... i was lazy. Here's what happens when I connect to my server on IPv6 (mind you, everything works fine if I remove the record): 2019/12/15 22:53:44 [crit] 15662#15662: *2225 bind() failed (97: Address family not supported by p

Re: IPv6 to IPv4

2019-12-11 Thread Sergey A. Osokin
Hi Rhys, hope you're doing well. Yes, it's definitely possible. The following code snippet does the show: server { listen [::]:80 default ipv6only=on; location / { proxy_pass http://127.0.0.1:8081; } } server { listen 127.0.0.1:8081; location / {

IPv6 to IPv4

2019-12-11 Thread Rhys Ferris
Not sure if this is possible. I am trying to enable dual stack for my server, which also proxies several other internal services. Nginx is receiving requests on IPv6 fine, but some of my services are IPv4 only. Can Nginx receive the request on IPv6, retrieve the content from IPv4 internally, and