mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Comment-off languages: Continue to debug transmission_http_port variable issue
This commit is contained in:
parent
ee0f537a9f
commit
b5e587df5e
2 changed files with 13 additions and 11 deletions
|
@ -8,7 +8,8 @@ transmission_enabled: False
|
|||
# Transmission default download directory.
|
||||
transmission_download_dir: /library/transmission
|
||||
|
||||
# Transmission default web and bittorrent ports
|
||||
# Transmission default web and bittorrent ports http://box:9091/transmission/
|
||||
# TODO: BUG transmission_http_port is not assigned in settings.json?
|
||||
transmission_http_port: 9091
|
||||
transmission_peer_port: 51413
|
||||
transmission_url : "/transmission/"
|
||||
|
@ -20,11 +21,11 @@ transmission_kalite_version: 0.17
|
|||
transmission_kalite_languages:
|
||||
- english
|
||||
- french
|
||||
- hindi
|
||||
#- hindi
|
||||
- portugal-portuguese
|
||||
- brazilian-portuguese
|
||||
- spanish
|
||||
- swahili
|
||||
#- brazilian-portuguese
|
||||
#- spanish
|
||||
#- swahili
|
||||
|
||||
# Transmission administration account
|
||||
transmission_username: Admin
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"blocklist-url": "http://www.example.com/blocklist",
|
||||
"cache-size-mb": 4,
|
||||
"dht-enabled": true,
|
||||
"download-dir": "{{ transmission_download_dir }}",
|
||||
"download-dir": {{ transmission_download_dir }},
|
||||
"download-limit": 100,
|
||||
"download-limit-enabled": 0,
|
||||
"download-queue-enabled": true,
|
||||
|
@ -29,7 +29,7 @@
|
|||
"peer-id-ttl-hours": 6,
|
||||
"peer-limit-global": 200,
|
||||
"peer-limit-per-torrent": 50,
|
||||
"peer-port": "{{ transmission_peer_port }}",
|
||||
"peer-port": {{ transmission_peer_port }},
|
||||
"peer-port-random-high": 65535,
|
||||
"peer-port-random-low": 49152,
|
||||
"peer-port-random-on-start": false,
|
||||
|
@ -48,10 +48,11 @@
|
|||
"rpc-enabled": true,
|
||||
"rpc-host-whitelist": "",
|
||||
"rpc-host-whitelist-enabled": true,
|
||||
"rpc-password": "{{ transmission_password }}",
|
||||
"rpc-port": "{{ transmission_http_port }}",
|
||||
"rpc-url": "{{ transmission_url }}",
|
||||
"rpc-username": "{{ transmission_username }}",
|
||||
"rpc-password": {{ transmission_password }},
|
||||
# TODO: BUG transmission_http_port is not assigned in settings.json?
|
||||
"rpc-port": {{ transmission_http_port }},
|
||||
"rpc-url": {{ transmission_url }},
|
||||
"rpc-username": {{ transmission_username }},
|
||||
"rpc-whitelist": "127.0.0.1",
|
||||
"rpc-whitelist-enabled": true,
|
||||
"scrape-paused-torrents-enabled": true,
|
||||
|
|
Loading…
Add table
Reference in a new issue