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 default download directory.
|
||||||
transmission_download_dir: /library/transmission
|
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_http_port: 9091
|
||||||
transmission_peer_port: 51413
|
transmission_peer_port: 51413
|
||||||
transmission_url : "/transmission/"
|
transmission_url : "/transmission/"
|
||||||
|
@ -20,11 +21,11 @@ transmission_kalite_version: 0.17
|
||||||
transmission_kalite_languages:
|
transmission_kalite_languages:
|
||||||
- english
|
- english
|
||||||
- french
|
- french
|
||||||
- hindi
|
#- hindi
|
||||||
- portugal-portuguese
|
- portugal-portuguese
|
||||||
- brazilian-portuguese
|
#- brazilian-portuguese
|
||||||
- spanish
|
#- spanish
|
||||||
- swahili
|
#- swahili
|
||||||
|
|
||||||
# Transmission administration account
|
# Transmission administration account
|
||||||
transmission_username: Admin
|
transmission_username: Admin
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"blocklist-url": "http://www.example.com/blocklist",
|
"blocklist-url": "http://www.example.com/blocklist",
|
||||||
"cache-size-mb": 4,
|
"cache-size-mb": 4,
|
||||||
"dht-enabled": true,
|
"dht-enabled": true,
|
||||||
"download-dir": "{{ transmission_download_dir }}",
|
"download-dir": {{ transmission_download_dir }},
|
||||||
"download-limit": 100,
|
"download-limit": 100,
|
||||||
"download-limit-enabled": 0,
|
"download-limit-enabled": 0,
|
||||||
"download-queue-enabled": true,
|
"download-queue-enabled": true,
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
"peer-id-ttl-hours": 6,
|
"peer-id-ttl-hours": 6,
|
||||||
"peer-limit-global": 200,
|
"peer-limit-global": 200,
|
||||||
"peer-limit-per-torrent": 50,
|
"peer-limit-per-torrent": 50,
|
||||||
"peer-port": "{{ transmission_peer_port }}",
|
"peer-port": {{ transmission_peer_port }},
|
||||||
"peer-port-random-high": 65535,
|
"peer-port-random-high": 65535,
|
||||||
"peer-port-random-low": 49152,
|
"peer-port-random-low": 49152,
|
||||||
"peer-port-random-on-start": false,
|
"peer-port-random-on-start": false,
|
||||||
|
@ -48,10 +48,11 @@
|
||||||
"rpc-enabled": true,
|
"rpc-enabled": true,
|
||||||
"rpc-host-whitelist": "",
|
"rpc-host-whitelist": "",
|
||||||
"rpc-host-whitelist-enabled": true,
|
"rpc-host-whitelist-enabled": true,
|
||||||
"rpc-password": "{{ transmission_password }}",
|
"rpc-password": {{ transmission_password }},
|
||||||
"rpc-port": "{{ transmission_http_port }}",
|
# TODO: BUG transmission_http_port is not assigned in settings.json?
|
||||||
"rpc-url": "{{ transmission_url }}",
|
"rpc-port": {{ transmission_http_port }},
|
||||||
"rpc-username": "{{ transmission_username }}",
|
"rpc-url": {{ transmission_url }},
|
||||||
|
"rpc-username": {{ transmission_username }},
|
||||||
"rpc-whitelist": "127.0.0.1",
|
"rpc-whitelist": "127.0.0.1",
|
||||||
"rpc-whitelist-enabled": true,
|
"rpc-whitelist-enabled": true,
|
||||||
"scrape-paused-torrents-enabled": true,
|
"scrape-paused-torrents-enabled": true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue