Swap out deluge for qbittorrent
Just run on arch instead of docker, too. Much simpler.
This commit is contained in:
29
ansible/roles/qbittorrent/files/nginx.conf
Normal file
29
ansible/roles/qbittorrent/files/nginx.conf
Normal file
@ -0,0 +1,29 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user