1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# NNTP Proxy — Typical Configuration
#
# A good starting point for most setups:
# - Single worker thread
# - Two backend servers (primary + fallback)
# - No article cache
# - No client authentication
#
# Copy to config.toml and fill in your backend details.
# For all available options see config.full.toml.
[]
# Port to listen on (default: 8119)
= 8119
# Worker threads (default: 1; use 0 for one per CPU core)
= 1
[]
# Routing mode: "hybrid" (default), "per-command", or "stateful"
= "hybrid"
# Backend selection strategy: "least-loaded" (default) or "weighted-round-robin"
= "least-loaded"
[]
= 30
= 5
= 3
# Primary backend — tried first
[[]]
= "news.example.com"
= 119
= "Primary"
= "your_username"
= "your_password"
= 20
= 0
= false
= true
# Fallback backend — used after the primary tier is exhausted for the request
# (for example, after eligible primary backends report article-missing 430s)
[[]]
= "news2.example.com"
= 563
= "Fallback"
= "your_username"
= "your_password"
= 10
= 1
= 60
= true
= true