Disable gzip on qbittorrent egress
It's mostly used over the internal network, so the additional gzip isn't going to gain anything when the disk is the bottleneck
This commit is contained in:
parent
55e3b81f06
commit
c99afdd446
1 changed files with 3 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
worker_processes 1;
|
worker_processes 2;
|
||||||
|
|
||||||
events {
|
events {
|
||||||
worker_connections 1024;
|
worker_connections 1024;
|
||||||
|
@ -13,15 +13,14 @@ http {
|
||||||
|
|
||||||
keepalive_timeout 65;
|
keepalive_timeout 65;
|
||||||
|
|
||||||
gzip on;
|
gzip off;
|
||||||
|
gzip_static off;
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
|
||||||
root /mnt/downloads;
|
root /mnt/downloads;
|
||||||
|
|
||||||
gzip_static off;
|
|
||||||
gzip_types *;
|
|
||||||
|
|
||||||
autoindex on;
|
autoindex on;
|
||||||
autoindex_exact_size off;
|
autoindex_exact_size off;
|
||||||
|
|
Loading…
Reference in a new issue