NGINX UDP Proxy listening same port and decides on origin ip
I am currently trying to make a nginx proxy work where it pass to different ips depending on the origin. stream { server { listen 1000 udp; proxy_pass 10.0.0.2; allow 10.0.0.3; } server { listen 1000 udp; proxy_pass 10.0.0.3; allow…