-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.json
More file actions
44 lines (44 loc) · 1.24 KB
/
config.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"instance_name": "Server",
"instance_port": 19005,
"sslencryption": true,
"cert_file_path": "./server.crt",
"key_file_path": "./server.key",
"require_authentication": true,
"enable_root": true,
"master_key_location": "./masterkey.key",
"servers": [
{
"instance_name": "Server1",
"home_directory": "/home/devin/Flow/ECExp",
"command_to_run": "bash",
"max_lines": 200,
"amount_of_lines_to_cut_on_max": 10,
"stop_process_command": "exit",
"unresponsive_kill_time_seconds": 20,
"minecraft_mode": true,
"start_process_on_initialize": true
}
],
"proxied_servers": [
{
"process_name": "Server1",
"process_alias": "Server2",
"ip": "localhost",
"port": 19005,
"require_authentication": true,
"username": "default",
"password": "password",
"enable_encryption": true,
"check_encryption": false,
"cert_file_location": "none",
"disabled": false
}
],
"users": [
{
"name": "default",
"password": "password"
}
]
}