Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 545 Bytes

caveats.md

File metadata and controls

20 lines (14 loc) · 545 Bytes

Caveats

temporary file is not in radata

amark/gun#994

nginx error "worker_connections are not enough while connecting to upstream"

2020/08/03 04:08:04 [alert] 681#681: *700685 768 worker_connections are not enough while connecting to upstream, client: *.*.*.*, server: gun.maskbook.com, request: "GET /gun HTTP/1.1", upstream: "http://127.0.0.1:8765/gun", host: "gun.maskbook.com"

workaround on /etc/nginx/nginx.conf

events {
  worker_connections 10000;
  multi_accept on;
}