Re: nginx reverse proxy with rtmp

2016-05-14 Thread Zin Man
Yuriy Medvedev wrote in post #1183456: > Rtmp it's tcp and you need use nginx as tcp proxy like haproxy > 14 мая 2016 г. 3:04 пользователь "Zin Man" > написал: can you please give me an example config -- Posted via http://www.ruby-forum.com/. ___ ngin

Re: Serving website with Apache, with Nginx as interface?

2016-05-14 Thread Alex Hall
> On May 14, 2016, at 05:19, Francis Daly wrote: > > On Fri, May 13, 2016 at 01:24:57PM -0400, Alex Hall wrote: > > Hi there, > >> It's as though the proxy weren't working properly at all. >> I have it set up in a location: >> >> upstream apache2Redirect { >> server 127.0.0.1:8080; >> } >>

Re: Serving website with Apache, with Nginx as interface?

2016-05-14 Thread itpp2012
Alex Hall Wrote: --- > upstream apache2Redirect { > server 127.0.0.1:8080; > } > > location / { > proxy_set_header Host $host; > proxy_pass http://apache2Redirect; > } Browser(get localhost:8080) -> osticket (return responses with localhos

Re: Serving website with Apache, with Nginx as interface?

2016-05-14 Thread Francis Daly
On Fri, May 13, 2016 at 01:24:57PM -0400, Alex Hall wrote: Hi there, > It's as though the proxy weren't working properly at all. > I have it set up in a location: > > upstream apache2Redirect { > server 127.0.0.1:8080; > } > > location / { > proxy_set_header Host $host; > proxy_pass http:

Re: nginx reverse proxy with rtmp

2016-05-14 Thread Yuriy Medvedev
Rtmp it's tcp and you need use nginx as tcp proxy like haproxy 14 мая 2016 г. 3:04 пользователь "Zin Man" написал: > I am trying to use nginx reverse proxy to connect to a nginx rtmp server > > 2 servers a and b > > a = nginx with rtmp ( videos loacated here ) > > b = nginx reverse proxy > > the