Skip to content

Commit

Permalink
Merge #635: Reset default configuration for development
Browse files Browse the repository at this point in the history
1b7e5b9 feat: enable all services in dev default config (Jose Celano)

Pull request description:

  - Using wildcard IPs for UDP and HTTP tracker.
  - Revert port 0 (unintentionally changed). Use predefined ports.

Top commit has no ACKs.

Tree-SHA512: 241476b60b501a3e8ab23d4b6a55f2e8714cf9fcafebb41a70cf6bf24d6d52dab9c9a13958dcbc8b2ea555024d20ca67f26fa8675fcbbc6de878c78d326bf1ef
  • Loading branch information
josecelano committed Jan 19, 2024
2 parents 254d16f + 1b7e5b9 commit 7ea6fb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions share/default/config/tracker.development.sqlite3.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ remove_peerless_torrents = true
tracker_usage_statistics = true

[[udp_trackers]]
bind_address = "0.0.0.0:0"
bind_address = "0.0.0.0:6969"
enabled = true

[[http_trackers]]
bind_address = "0.0.0.0:0"
bind_address = "0.0.0.0:7070"
enabled = true
ssl_cert_path = ""
ssl_enabled = false
ssl_key_path = ""

[http_api]
bind_address = "127.0.0.1:0"
bind_address = "127.0.0.1:1212"
enabled = true
ssl_cert_path = ""
ssl_enabled = false
Expand Down

0 comments on commit 7ea6fb0

Please sign in to comment.