Re: Nginx reverse proxy for TFTP UDP port 69 traffic

2017-03-09 Thread Eric Feldhusen
On Mar 7, 2017, at 4:58 PM, Vladimir Homutov wrote: On 08.03.2017 00:21, Eric Feldhusen wrote: I’m trying to use Nginx to reverse proxy TFTP UDP port 69 traffic and I”m having a problem with getting files through the nginx reverse proxy. My configuration is simple, I’m running TFTP on one

Re: Nginx reverse proxy for TFTP UDP port 69 traffic

2017-03-07 Thread Eric Feldhusen
> On Mar 7, 2017, at 4:58 PM, Vladimir Homutov wrote: > > On 08.03.2017 00:21, Eric Feldhusen wrote: >> I’m trying to use Nginx to reverse proxy TFTP UDP port 69 traffic and >> I”m having a problem with getting files through the nginx reverse proxy. >> >>

Nginx reverse proxy for TFTP UDP port 69 traffic

2017-03-07 Thread Eric Feldhusen
in the right direction. I’m assuming it’s something I’m missing. Eric Feldhusen My configuration is below. The TFTP server is at 192.168.1.11 and the Nginx reverse proxy is at 192.168.1.145. No firewalls on either server. stream { upstream staging_tftp_servers { server 192.168.1

Re: Send all requests to two separate upstream servers?

2014-06-17 Thread Eric Feldhusen
That's almost perfect, except I don't have enough access to the development environment to get it installed. Eric On Tue, Jun 17, 2014 at 5:27 PM, Yichun Zhang (agentzh) wrote: > Hi > > On Tue, Jun 17, 2014 at 3:09 PM, Eric Feldhusen wrote: > > I'm looking for

Re: Send all requests to two separate upstream servers?

2014-06-17 Thread Eric Feldhusen
I'm looking for a way to mirror my production site traffic to a development environment, so that I have nearly identical traffic going to both to work through some optimization issues that are hard to do without the load, which is just incoming data. Eric On Tue, Jun 17, 2014 at 10:35 AM, Reini

Re: Send all requests to two separate upstream servers?

2014-06-17 Thread Eric Feldhusen
Option A and that's what I figured as well. Eric Feldusen On Tue, Jun 17, 2014 at 10:08 AM, Richard Kearsley wrote: > On 17/06/14 15:13, Eric Feldhusen wrote: > > I have a need to adjust a nginx install doing reverse proxy to a single > server now to adjust it to sen

Send all requests to two separate upstream servers?

2014-06-17 Thread Eric Feldhusen
rite rules instead. upstream original_upstream { server } upstream new_upstream { server } server { location / { proxy_pass http://original_upstream; } location / { proxy_pass http://new_upstream; } Any suggestions? Eric