Skip to content

Commit 554e833

Browse files
committed
test: [torrust#634] E2E tests runner
1 parent dee86be commit 554e833

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
announce_interval = 120
2+
db_driver = "Sqlite3"
3+
db_path = "/var/lib/torrust/tracker/database/sqlite3.db"
4+
external_ip = "0.0.0.0"
5+
inactive_peer_cleanup_interval = 600
6+
log_level = "info"
7+
max_peer_timeout = 900
8+
min_announce_interval = 120
9+
mode = "public"
10+
on_reverse_proxy = false
11+
persistent_torrent_completed_stat = false
12+
remove_peerless_torrents = true
13+
tracker_usage_statistics = true
14+
15+
[[udp_trackers]]
16+
bind_address = "0.0.0.0:6969"
17+
enabled = true
18+
19+
[[http_trackers]]
20+
bind_address = "0.0.0.0:7070"
21+
enabled = true
22+
ssl_cert_path = "/var/lib/torrust/tracker/tls/localhost.crt"
23+
ssl_enabled = false
24+
ssl_key_path = "/var/lib/torrust/tracker/tls/localhost.key"
25+
26+
[http_api]
27+
bind_address = "0.0.0.0:1212"
28+
enabled = true
29+
ssl_cert_path = "/var/lib/torrust/tracker/tls/localhost.crt"
30+
ssl_enabled = false
31+
ssl_key_path = "/var/lib/torrust/tracker/tls/localhost.key"
32+
33+
# Please override the admin token setting the
34+
# `TORRUST_TRACKER_API_ADMIN_TOKEN`
35+
# environmental variable!
36+
37+
[http_api.access_tokens]
38+
admin = "MyAccessToken"
39+
40+
[health_check_api]
41+
bind_address = "0.0.0.0:1313"

0 commit comments

Comments
 (0)