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
> 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;
>> }
>>
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
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:
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