Untuk Firefox
1. Di address bar firefox ketik about:config
2. Lihat config : network.http.max-connections-per-server dan network.http.max-persistent-connections-per-server lihat nilainya, bisa dinaikkan sesuai kebutuhan
how to configure maximum number of connections that it will accept from a single client in nginx
Berikut jawaban ChatGPT, jawaban ini perlu divalidasi :
To configure the maximum number of connections that nginx will accept from a single client, you can use the max_conns directive in the http or server block of your nginx configuration file. For example, to limit the number of connections to 100 for a specific server, you could use the following configuration:
http {
...
server {
...
max_conns 100;
...
}
}
Referensi
- Max parallel HTTP connections in a browser?, https://stackoverflow.com/questions/985431/max-parallel-http-connections-in-a-browser
No comments:
Post a Comment