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:
Jake Howard
2021-08-21 16:46:21 +01:00
parent 55e3b81f06
commit c99afdd446

View File

@ -1,4 +1,4 @@
worker_processes 1;
worker_processes 2;
events {
worker_connections 1024;
@ -13,15 +13,14 @@ http {
keepalive_timeout 65;
gzip on;
gzip off;
gzip_static off;
server {
listen 80;
root /mnt/downloads;
gzip_static off;
gzip_types *;
autoindex on;
autoindex_exact_size off;