I have a server with nginx installed on it to serve some files for downloading. I also didn't change default configuration of nginx.
Problem is that when I try to download from this server it seems there is a limitation for a connection because when I try to download with axel with 10 connection it's about 3X faster than wget with one connection.
How can I remove this limitation so that users can download with maximum speed from this server with one connection?
is Using axel faster because of my configuration or it's because of characteristic of network and internet?
UPDATE:
After first comment that indicates my comparison was wrong, I changed my test to axel -n 1
Vs. axel -n 10
. Now there is no much difference between them but using more than one connection is still a little bit faster. (780KB/s for one connection and 830KB/s for ten connection).
Is this difference irrelevant to nginx configuration?