2018-12-26 11:43:50 +00:00
|
|
|
# Transmission
|
|
|
|
|
|
|
|
Homepage: [https://transmissionbt.com/](https://transmissionbt.com/)
|
|
|
|
|
|
|
|
Transmission is a free BitTorrent client. Two versions are provided - one that tunnels through a VPN and one that connects
|
2019-06-03 15:55:53 +00:00
|
|
|
directly.
|
2018-12-26 11:43:50 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2020-01-25 23:40:26 +00:00
|
|
|
Set `transmission_enabled: true`, or `transmission_with_openvpn_enabled: true` in your `inventories/<your_inventory>/nas.yml` file.
|
2018-12-26 11:43:50 +00:00
|
|
|
|
|
|
|
Transmission's web interface can be found at http://ansible_nas_host_or_ip:9091 (with VPN) or http://ansible_nas_host_or_ip:9092 (without VPN).
|
|
|
|
|
|
|
|
## Specific Configuration
|
|
|
|
|
2019-07-03 23:22:20 +00:00
|
|
|
If you enable Transmission with OpenVPN, you'll need to add the following to your inventory `all.yml`:
|
|
|
|
|
|
|
|
```
|
|
|
|
openvpn_username: super_secret_username
|
|
|
|
openvpn_password: super_secret_password
|
|
|
|
openvpn_provider: NORDVPN
|
|
|
|
openvpn_config: uk686.nordvpn.com.udp
|
|
|
|
```
|
|
|
|
|
|
|
|
See https://hub.docker.com/r/haugene/transmission-openvpn/ for supported VPN providers.
|
|
|
|
|