forked from OpenXcom-Coop/OpenXcom-Coop-Mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrendezvous.json.example
More file actions
23 lines (23 loc) · 901 Bytes
/
Copy pathrendezvous.json.example
File metadata and controls
23 lines (23 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"_comment": "Copy to rendezvous.json and fill in real values. Search order: 1) env OXC_RENDEZVOUS_CONFIG, 2) <exe folder>/rendezvous.json, 3) <config folder>/rendezvous.json. rendezvous.json is git-ignored. SECURITY: only PUBLIC keys go here, never the server secret keys.",
"servers": [
{
"name": "Official",
"host": "0.0.0.0",
"tcpPort": 39000,
"udpPort": 39001,
"gameVersion": "1.8.4 [v2026-06-28]",
"serverBoxPublicKey": "PASTE_SERVER_BOX_PUBLIC_KEY_BASE64_HERE",
"serverSignPublicKey": "PASTE_SERVER_SIGN_PUBLIC_KEY_BASE64_HERE"
},
{
"name": "Local Test",
"host": "127.0.0.1",
"tcpPort": 39000,
"udpPort": 39001,
"gameVersion": "1.8.4 [v2026-06-28]",
"serverBoxPublicKey": "PASTE_SERVER_BOX_PUBLIC_KEY_BASE64_HERE",
"serverSignPublicKey": "PASTE_SERVER_SIGN_PUBLIC_KEY_BASE64_HERE"
}
]
}