forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
impostorconfig.json
232 lines (231 loc) · 9.04 KB
/
impostorconfig.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
[
{
"DisplayName":"Public IP",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ExternalIP",
"InputType":"text",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"$.Server.PublicIp",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Public Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ServerPort",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"$.Server.PublicPort",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Listen Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ServerPort",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"$.Server.ListenPort",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"HTTP Matchmaking Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ServerPort",
"InputType":"number",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"$.HttpServer.ListenPort",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"IP Binding",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationIPBinding",
"InputType":"text",
"IsFlagArgument":false,
"Hidden":true,
"ParamFieldName":"$.Server.ListenIp",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Build Stream",
"Category":"Server Settings",
"Description":"Sets the build stream for the server - either the mainline release stream, or the nightly (CI) stream. The Server Version also needs to be set. Back up configuration and update the server!",
"Keywords":"build,stream",
"FieldName":"BuildStream",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"BuildStream",
"IncludeInCommandLine":false,
"DefaultValue":"Release",
"EnumValues":{
"Release":"Mainline (Default)",
"Nightly":"Nightly"
}
},
{
"DisplayName":"Server Version",
"Category":"Server Settings",
"Description":"Sets the server version (either a [release](https://github.com/Impostor/Impostor/releases) version or a [nightly](https://nightly.link/Impostor/Impostor/workflows/ci/master) version) to install. For nightly, you must include the build number, such as \"1.9.1-ci.814\". Update the server after changing this setting",
"Keywords":"server,version",
"FieldName":"ServerVersion",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"ServerVersion",
"IncludeInCommandLine":false,
"DefaultValue":"1.9.1",
"Placeholder":"1.9.1 | 1.9.1-ci.814",
"Required":true,
"EnumValues":{}
},
{
"DisplayName":"Dotnet Version",
"Category":"Server Settings",
"Description":"Sets the ASP.NET Core [8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) or [7.0](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) version to install. Use 8.0 for Impostor v1.9.0+. Update the server after changing this setting",
"Keywords":"dotnet,version",
"FieldName":"DotnetVersion",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"DotnetVersion",
"IncludeInCommandLine":false,
"DefaultValue":"8.0.4",
"Placeholder":"8.0.4",
"Required":true,
"EnumValues":{}
},
{
"DisplayName":"Client and HTTP Matchmaking Configuration",
"Category":"Server Settings",
"Description":"To connect to the server, players must [configure their Among Us client](https://impostor.github.io/Impostor/). [HTTP matchmaking](https://github.com/Impostor/Impostor/blob/master/docs/Http-server.md) is also required. Impostor v1.9.0+ has the HTTP matchmaking server built-in, while for earlier versions the HTTP Plugin is required",
"Keywords":"client,configuration,http,matchmaking,plugin",
"FieldName":"",
"InputType":"hidden",
"IsFlagArgument":false,
"ParamFieldName":"",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"HTTP Matchmaking Server Binding",
"Category":"Server Settings",
"Description":"Sets the binding of the HTTP matchmaking server. Use 0.0.0.0 if clients will connect to the HTTP server directly. Otherwise you can use 127.0.0.1 or a local IP on the host, as appropriate, if using a reverse proxy for the plugin server traffic (preferred)",
"Keywords":"http,matchmaking,server,binding,listenip",
"FieldName":"HttpServerListenIp",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"$.HttpServer.ListenIp",
"IncludeInCommandLine":false,
"DefaultValue":"0.0.0.0",
"Placeholder":"0.0.0.0",
"EnumValues":{}
},
{
"DisplayName":"Install HTTP Plugin",
"Category":"Server Settings",
"Description":"If enabled, the [HTTP Plugin](https://github.com/Impostor/Impostor.Http#impostorhttp) will be installed when the server is updated. DO NOT enable this if using Impostor v1.9.0+",
"Keywords":"http,matchmaking,plugin,install",
"FieldName":"InstallHttpPlugin",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"InstallHttpPlugin",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"HTTP Plugin Version",
"Category":"Server Settings",
"Description":"Sets the [Impostor.HTTP plugin version](https://github.com/Impostor/Impostor.Http/releases) to install, if Install HTTP Plugin is enabled",
"Keywords":"http,matchmaking,plugin,version",
"FieldName":"HttpPluginVersion",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"HttpPluginVersion",
"IncludeInCommandLine":false,
"DefaultValue":"0.5.0",
"Placeholder":"0.5.0",
"Required":true,
"EnumValues":{}
},
{
"DisplayName":"Enable HTTPS For HTTP Matchmaking Plugin",
"Category":"Server Settings",
"Description":"If set, the Impostor.Http plugin server (if used) will use its own HTTPS (encrypted HTTP) rather than plain HTTP. Requires the HTTP Matchmaking Plugin Certificate Path to be set. Using a reverse proxy to provide HTTPS is preferred instead of using this setting. Note: HTTPS is required for mobile devices to connect",
"Keywords":"http,matchmaking,plugin,https,secure,usehttps",
"FieldName":"HttpServerUseHttps",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"$.HttpServer.UseHttps",
"IncludeInCommandLine":false,
"DefaultValue":"false",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"HTTP Matchmaking Plugin Certificate Path",
"Category":"Server Settings",
"Description":"Sets the path to an SSL certificate (in PFX format) to enable the Impostor.Http plugin server (if used) to use its own HTTPS",
"Keywords":"http,matchmaking,plugin,https,secure,certificate,path,certificatepath",
"FieldName":"HttpServerCertificatePath",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"$.HttpServer.CertificatePath",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Enable Anticheat",
"Category":"Server Settings",
"Description":"If set, anticheat will be enabled",
"Keywords":"anti,cheat",
"FieldName":"AntiCheat_Enabled",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"$.AntiCheat.Enabled",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
},
{
"DisplayName":"Ban IP",
"Category":"Server Settings",
"Description":"If enabled, anticheat will ban a hacking player from the server rather than just kicking them. The banned player will not be able to rejoin that game",
"Keywords":"anti,cheat,ban",
"FieldName":"AntiCheat_BanIpFromGame",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"$.AntiCheat.BanIpFromGame",
"IncludeInCommandLine":false,
"DefaultValue":"true",
"EnumValues":{
"False":"false",
"True":"true"
}
}
]