mirror of
https://github.com/codex-storage/bittorrent-benchmarks.git
synced 2025-01-30 21:04:59 +00:00
29 lines
913 B
YAML
29 lines
913 B
YAML
# You can use this configuration to run the experiments locally with the provided
|
|
# Docker compose environment.
|
|
deluge_experiment:
|
|
seeders: 1
|
|
tracker_announce_url: ${TRACKER_ANNOUNCE_URL:-http://127.0.0.1:8000/announce}
|
|
file_size: 52428800
|
|
repetitions: 3
|
|
shared_volume_path: ${PWD}/volume
|
|
|
|
nodes:
|
|
- name: deluge-1
|
|
address: ${DELUGE_NODE_1:-localhost}
|
|
daemon_port: 6890
|
|
listen_ports: [ 6891, 6892 ]
|
|
agent_url: http://${DELUGE_AGENT_1:-localhost}:9001/
|
|
- name: deluge-2
|
|
address: ${DELUGE_NODE_2:-localhost}
|
|
daemon_port: 6893
|
|
listen_ports: [ 6894, 6895 ]
|
|
agent_url: http://${DELUGE_AGENT_2:-localhost}:9002/
|
|
- name: deluge-3
|
|
address: ${DELUGE_NODE_3:-localhost}
|
|
daemon_port: 6896
|
|
listen_ports: [ 6897, 6898 ]
|
|
agent_url: http://${DELUGE_AGENT_3:-localhost}:9003/
|
|
|
|
deluge_agent:
|
|
torrents_path: /var/lib/deluge/downloads
|