upstream server { server example.com max_conns=10;}location /folder/ { proxy_pass http://server;}
I met these wonderful tools are nginx and openresty 2 days ago, I am finding amazing.But I need a free solution for this feature present only in nginx plus it costs a small fortune.In server parameters of ngx_http_upstream_module have parameter max_conns In the example below I want to limit access to example.com to 10 simultaneous connections at most.upstream server { server example.com max_conns=10;}location /folder/ { proxy_pass http://server;}But free nginx dont have max_conns, is there any way to do this with openresty, or some other solution that I still do not know? .