-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json.example
More file actions
25 lines (19 loc) · 1.18 KB
/
Copy pathserver.json.example
File metadata and controls
25 lines (19 loc) · 1.18 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
{
"_comment": "Copy this file to `server.json` in the server working directory (next to resources/) and edit. Delete these _comment keys if desired — the parser ignores unknown keys, but keep the file valid JSON. If server.json exists, host, port, maxplayers, map, and server-token are all required. The mod object may be omitted to use its defaults.",
"_host": "Interface to bind. Leave 0.0.0.0 to accept players on every interface (default 0.0.0.0).",
"host": "0.0.0.0",
"_port": "UDP game port. Players connect here; it must be open in your firewall (default 27015).",
"port": 27015,
"_maxplayers": "Max concurrent players (default 512).",
"maxplayers": 32,
"_map": "Map/level name passed to the mod. HogwartsMP currently ignores this; leave empty.",
"map": "",
"_server-token": "Secret key required to announce this server to the public masterlist. Leave empty for a private/unlisted server. See MASTERLIST.md.",
"server-token": "",
"_mod": "HogwartsMP-specific settings. This starter config intentionally requires no CurseForge mods. Add only numeric project ids you deliberately chose and tested; see README.md.",
"mod": {
"curseforge": {
"mods": []
}
}
}