2025-12-21 14:04:24 +00:00
|
|
|
# Validation Constraints for Tracker Arrays
|
|
|
|
|
# Single source of truth for min/max items and uniqueness rules
|
|
|
|
|
#
|
|
|
|
|
# This file is imported by array-trackers.toml via constraint interpolation:
|
|
|
|
|
# max_items = "${constraint.tracker.udp.max_items}"
|
|
|
|
|
# max_items = "${constraint.tracker.http.max_items}"
|
|
|
|
|
#
|
|
|
|
|
# Change these values and the form will automatically use them!
|
|
|
|
|
|
|
|
|
|
[tracker.udp]
|
|
|
|
|
# UDP tracker listeners - BitTorrent standard port 6969
|
|
|
|
|
max_items = 4
|
2025-12-28 20:39:36 +00:00
|
|
|
min_items = 0
|
2025-12-21 14:04:24 +00:00
|
|
|
unique = true
|
|
|
|
|
|
|
|
|
|
[tracker.http]
|
|
|
|
|
# HTTP tracker listeners - Standard HTTP/HTTPS ports 80/443
|
|
|
|
|
max_items = 4
|
2025-12-28 20:39:36 +00:00
|
|
|
min_items = 0
|
2025-12-21 14:04:24 +00:00
|
|
|
unique = true
|