diff --git a/config/qbittorrent/.gitignore b/config/qbittorrent/.gitignore deleted file mode 100644 index a69a379..0000000 --- a/config/qbittorrent/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!.gitignore -!qBittorrent/ diff --git a/config/qbittorrent/qBittorrent/.gitignore b/config/qbittorrent/qBittorrent/.gitignore deleted file mode 100644 index 379300c..0000000 --- a/config/qbittorrent/qBittorrent/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!.gitignore -!qBittorrent.example.conf diff --git a/config/qbittorrent/qBittorrent/qBittorrent.example.conf b/config/qbittorrent/qBittorrent/qBittorrent.example.conf deleted file mode 100644 index 66d3e3d..0000000 --- a/config/qbittorrent/qBittorrent/qBittorrent.example.conf +++ /dev/null @@ -1,52 +0,0 @@ -[AutoRun] -enabled=false -program= - -[BitTorrent] -Session\DisableAutoTMMByDefault=false -Session\DisableAutoTMMTriggers\CategorySavePathChanged=false -Session\DisableAutoTMMTriggers\DefaultSavePathChanged=false -Session\GlobalMaxSeedingMinutes=1440 - -[LegalNotice] -Accepted=true - -[Preferences] -Advanced\RecheckOnCompletion=false -Advanced\trackerPort=9000 -Bittorrent\MaxConnecs=2000 -Bittorrent\MaxConnecsPerTorrent=300 -Bittorrent\MaxRatio=1.2 -Connection\PortRangeMin=6881 -Connection\ResolvePeerCountries=true -Connection\UPnP=false -Downloads\SavePath=/downloads/ -Downloads\ScanDirsV2=@Variant(\0\0\0\x1c\0\0\0\0) -Downloads\TempPath=/tmp/downloading/ -Downloads\TempPathEnabled=true -Downloads\UseIncompleteExtension=true -General\Locale=zh -Queueing\MaxActiveDownloads=7 -Queueing\MaxActiveTorrents=100 -Queueing\MaxActiveUploads=30 -Queueing\QueueingEnabled=true -WebUI\Address=* -WebUI\AlternativeUIEnabled=false -WebUI\AuthSubnetWhitelist=@Invalid() -WebUI\AuthSubnetWhitelistEnabled=false -WebUI\BanDuration=3600 -WebUI\CSRFProtection=true -WebUI\ClickjackingProtection=true -WebUI\HTTPS\CertificatePath= -WebUI\HTTPS\Enabled=false -WebUI\HTTPS\KeyPath= -WebUI\HostHeaderValidation=true -WebUI\LocalHostAuth=true -WebUI\MaxAuthenticationFailCount=5 -WebUI\Port=8585 -WebUI\RootFolder= -WebUI\SecureCookie=true -WebUI\ServerDomains=* -WebUI\SessionTimeout=3600 -WebUI\UseUPnP=true -WebUI\Username=admin diff --git a/docker-compose.yaml b/docker-compose.yaml deleted file mode 100644 index fab892b..0000000 --- a/docker-compose.yaml +++ /dev/null @@ -1,31 +0,0 @@ -version: "2" -services: - qbittorrent: - image: linuxserver/qbittorrent - container_name: qbittorrent - environment: - - PUID=1000 - - PGID=1000 - - TZ=Asia/Shanghai - - UMASK_SET=022 - - WEBUI_PORT=8585 - volumes: - - ./config/qbittorrent:/config - - ./tmp/downloads:/downloads - ports: - - 6881:6881 - - 6881:6881/udp - - 8585:8585 - restart: unless-stopped - - fetcher: - image: javclub/fetcher - container_name: fetcher - environment: - - NODE_ENV=dev - volumes: - - ./database:/usr/app/database - - ./config:/usr/app/config - - ./tmp/downloads:/downloads - - ./tmp:/usr/app/tmp - restart: unless-stopped