Skip to content

Commit

Permalink
fix: [#581] update Index config files
Browse files Browse the repository at this point in the history
New changes have been made to the Torrust Index config file. Some API endpoints exposing the configuration have also changed.
This commits only cahnges the config files. Later commits will udpate
other parts.

```toml
[logging]
log_level = "info"

[tracker]
mode = "public"
```

```toml
version = "2"

[logging]
threshold = "info"

[tracker]
private = false
listed = false
```
  • Loading branch information
josecelano committed Jul 3, 2024
1 parent a40e2c7 commit 661d6f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
version = "2"

[tracker]
api_url = "http://tracker:1212"
mode = "private"
private = true
url = "http://tracker:7070"

[database]
Expand Down
3 changes: 3 additions & 0 deletions share/default/config/index.public.e2e.container.sqlite3.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
version = "2"

[tracker]
api_url = "http://tracker:1212"
private = false
url = "udp://tracker:6969"

[database]
Expand Down

0 comments on commit 661d6f7

Please sign in to comment.