infrastructure/ansible/roles/qbittorrent/files/nginx.conf
Jake Howard 92052a3d0a
Unify nginx configuration
This creates a simple base configuration skeleton, that other configuration can be easily loaded into.
2023-12-16 17:47:04 +00:00

12 lines
138 B
Nginx Configuration File

server {
listen 80;
gzip off;
gzip_static off;
root /mnt/downloads;
autoindex on;
autoindex_exact_size off;
}