21 lines
593 B
TOML
21 lines
593 B
TOML
|
|
# 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
|
||
|
|
min_items = 0
|
||
|
|
max_items = 4
|
||
|
|
unique = true
|
||
|
|
|
||
|
|
[tracker.http]
|
||
|
|
# HTTP tracker listeners - Standard HTTP/HTTPS ports 80/443
|
||
|
|
min_items = 0
|
||
|
|
max_items = 4
|
||
|
|
unique = true
|