infrastructure/ansible/roles/qbittorrent/files/nginx.conf
Jake Howard 5d9ee7190d
Swap out deluge for qbittorrent
Just run on arch instead of docker, too. Much simpler.
2021-04-16 21:49:00 +01:00

30 lines
412 B
Nginx Configuration File

worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
keepalive_timeout 65;
gzip on;
server {
listen 80;
root /mnt/downloads;
gzip_static off;
gzip_types *;
autoindex on;
autoindex_exact_size off;
}
}