Skip to content

Commit

Permalink
fix: [#635] udpate tracker config
Browse files Browse the repository at this point in the history
Tracker toml config has introduced breaking changes.
  • Loading branch information
josecelano committed Jun 19, 2024
1 parent 03fbbd9 commit 9962266
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
db_driver = "Sqlite3"
db_path = "/var/lib/torrust/tracker/database/e2e_testing_sqlite3.db"
[core]
mode = "private"

[core.database]
driver = "Sqlite3"
path = "/var/lib/torrust/tracker/database/e2e_testing_sqlite3.db"

[[udp_trackers]]
enabled = false
bind_address = "0.0.0.0:6969"

[http_api]
bind_address = "0.0.0.0:1212"
Expand Down
10 changes: 8 additions & 2 deletions share/default/config/tracker.public.e2e.container.sqlite3.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
db_driver = "Sqlite3"
db_path = "/var/lib/torrust/tracker/database/e2e_testing_sqlite3.db"
[core]
mode = "public"

[core.database]
driver = "Sqlite3"
path = "/var/lib/torrust/tracker/database/e2e_testing_sqlite3.db"

[[http_trackers]]
bind_address = "0.0.0.0:7070"

[http_api]
bind_address = "0.0.0.0:1212"

0 comments on commit 9962266

Please sign in to comment.