set a max connection limit to synapse from nginx

This commit is contained in:
Daniel Micay 2021-12-03 22:33:54 -05:00
parent cdcd278394
commit 27934d8d58

View File

@ -77,7 +77,8 @@ http {
aio_write on;
upstream backend {
server [::1]:8008 fail_timeout=1s;
zone backend 32k;
server [::1]:8008 max_conns=4096 fail_timeout=1s;
}
server {