Welcome! Log In Create A New Profile

Advanced

Is there a limitation in nginx on the number of simultaneous via proxy_pass

August 22, 2019 07:44AM
Is there a limitation in nginx on the number of simultaneous via proxy_pass "http://192.168.1.2:90xx"?

From the source http://192.168.1.2:90xx MJPEG is transmitted. Speed 200 kB/sec.

The browser displays only 6 video streams (id=1 ... id=6).
Threads id=7 ... id=9 not visible.

index.html
-----------------------------
<body bgcolor=gray>
<div class="d-table">
<div class="d-tr">
<div class="d-td" id="1">
<img src="/aaa/">
</div>
<div class="d-td" id="2">
<img src="/bbb/">
</div>
<div class="d-td" id="3">
<img src="/ccc/">
</div>
</div>
<div class="d-tr">
<div class="d-td" id="4">
<img src="/ddd/">
</div>
<div class="d-td" id="5">
<img src="/eee/">
</div>
<div class="d-td" id="6">
<img src="/fff/">
</div>
</div>
<div class="d-tr">
<div class="d-td" id="7">
<img src="/ggg/">
</div>
<div class="d-td" id="8">
<img src="/hhh/">
</div>
<div class="d-td" id="9">
<img src="/iii/">
</div>
</div>
</div>


nginx.conf
---------------------------
http {

...

server {
listen 80 default_server;

...

location /aaa/
{
proxy_pass "http://192.168.1.2:9000";
}

location /bbb/
{
proxy_pass "http://192.168.1.2:9001";
}

location /ccc/
{
proxy_pass "http://192.168.1.2:9002";
}

...

location /xxx/
{
proxy_pass "http://192.168.1.2:9012";
}
}
}
Subject Author Posted

Is there a limitation in nginx on the number of simultaneous via proxy_pass

glareboa August 22, 2019 07:44AM

Re: Is there a limitation in nginx on the number of simultaneous via proxy_pass

Hung Nguyen August 22, 2019 10:56AM

Re: Is there a limitation in nginx on the number of simultaneous via proxy_pass

glareboa August 22, 2019 01:33PM

Re: Is there a limitation in nginx on the number of simultaneous via proxy_pass

glareboa August 31, 2019 03:18PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 293
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready