-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathurt-proxy.conf.example
More file actions
76 lines (60 loc) · 2.24 KB
/
urt-proxy.conf.example
File metadata and controls
76 lines (60 loc) · 2.24 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# urt-proxy example configuration
#
# Copy this file to /etc/urt-proxy.conf (or wherever you prefer) and
# adjust the values. Start the proxy with:
#
# ./build/urt-proxy -c /etc/urt-proxy.conf
#
# Lines starting with # or ; are comments.
# Each [server:<name>] section defines one proxied game server.
# All keys except remote-host are optional and have sensible defaults.
[global]
# Enable verbose debug logging (default: false)
debug = false
# Management API — enable remote configuration over TCP.
# Requires an API key; without one the management API is disabled.
# mgmt-key = my-secret-api-key
# Management API listen port (default: 29990)
# mgmt-port = 29990
# Management API listen address (default: 127.0.0.1)
# Set to 0.0.0.0 to allow remote connections (use with caution)
# mgmt-addr = 127.0.0.1
[server:dallas]
# Local UDP port that clients connect to
listen-port = 27990
# Real game server address (WireGuard IP) — REQUIRED
remote-host = 10.0.0.2
# Real game server port (default: 27960)
remote-port = 27960
# Maximum concurrent game sessions (default: 20)
max-clients = 20
# Game session inactivity timeout in seconds (default: 30)
timeout = 30
# Prefix prepended to sv_hostname in server browser (optional)
hostname-tag = [DALLAS]
# Max new game sessions per second (default: 5)
rate-limit = 5
# Max concurrent server browser query sessions (default: 100)
max-query-sessions = 100
# Query session inactivity timeout in seconds (default: 5)
query-timeout = 5
# Master server(s) for server list registration (optional, up to 4)
# Supports HOST or HOST:PORT — port defaults to 27900
master-server = master.urbanterror.info
# Enable/disable heartbeat broadcast to master server(s) (default: true)
# Set to false/no/0 to keep this server hidden from the master server list
# while still having a master-server configured (can be toggled at runtime)
master-broadcast = true
[server:chicago]
listen-port = 27991
remote-host = 10.0.0.3
remote-port = 27960
max-clients = 20
timeout = 30
hostname-tag = [CHICAGO]
rate-limit = 5
max-query-sessions = 100
query-timeout = 5
master-server = master.urbanterror.info
# This server is hidden from the master server list
master-broadcast = false