forked from debkbanerji/minecraft-bedrock-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEXAMPLE_config.json
59 lines (58 loc) · 1.63 KB
/
EXAMPLE_config.json
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
// Rename this file to 'config.json' and delete this comment before starting
//
// See bedrock_server_how_to.html for more detailed information about what
// each of the fields in "server-properties" do
//
// Delete all the lines not below this one
{
"accept-official-minecraft-server-eula": false,
"minecraft-server-version": "1.16.221.01",
"server-properties": {
"server-name": "Dedicated Node S3 Server",
"gamemode": "survival",
"difficulty": "normal",
"allow-cheats": false,
"max-players": 10,
"online-mode": true,
"white-list": false,
"server-port": 19132,
"server-portv6": 19133,
"view-distance": 32,
"tick-distance": 4,
"player-idle-timeout": 30,
"max-threads": 8,
"level-name": "My Cool Level",
"default-player-permission-level": "member",
"texturepack-required": false,
"content-log-file-enabled": false,
"compression-threshold": 1,
"server-authoritative-movement": true,
"player-movement-score-threshold": 20,
"player-movement-distance-threshold": 0.3,
"player-movement-duration-threshold-in-ms": 500,
"correct-player-movement": false
},
"ui": {
"enabled": false,
"port": 3000,
"admin-code-sha256-hash": "replace-this-with-the-sha256-hash-of-your-admin-code"
},
"backup": {
"backup-frequency-minutes": 20,
"use-aws-s3-backup": false,
"num-backups-to-keep-for-type": {
"local": {
"SCHEDULED": 20,
"MANUAL": -1,
"ON_STOP": 30,
"ON_FORCED_STOP": -1
},
"remote": {
"SCHEDULED": 15,
"MANUAL": 30,
"ON_STOP": 20,
"ON_FORCED_STOP": 15
}
}
}
}