-
Notifications
You must be signed in to change notification settings - Fork 356
/
Copy pathappsettings.json
67 lines (67 loc) · 1.96 KB
/
appsettings.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
{
"AllowedHosts": "*",
"Serilog": {
"Using": [
"Serilog.Sinks.Console",
"Serilog.Sinks.Http"
],
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Information",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Information"
}
},
"WriteTo": [
{
"Name": "Console"
},
{
"Name": "DurableHttpUsingFileSizeRolledBuffers",
"Args": {
"requestUri": "http://localhost:50000",
"batchFormatter": "Serilog.Sinks.Http.BatchFormatters.ArrayBatchFormatter, Serilog.Sinks.Http",
"textFormatter": "Serilog.Formatting.Elasticsearch.ElasticsearchJsonFormatter, Serilog.Formatting.Elasticsearch"
}
}
],
"Enrich": [ "FromLogContext", "WithExceptionDetails", "WithMachineName", "WithCorrelationId" ],
"Properties": {
"Application": "OWSInstanceLauncher"
}
},
"RabbitMQOptions": {
"RabbitMQHostName": "host.docker.internal",
"RabbitMQPort": 5672,
"RabbitMQUserName": "dev",
"RabbitMQPassword": "test"
},
"OWSInstanceLauncherOptions": {
"OWSAPIKey": "",
"LauncherGuid": "",
"ServerIP": "127.0.0.1",
"MaxNumberOfInstances": 10,
"InternalServerIP": "127.0.0.1",
"StartingInstancePort": 7778,
"IsServerEditor": true,
"PathToDedicatedServer": "C:\\Program Files\\Epic Games\\UE_4.27\\Engine\\Binaries\\Win64\\UE4Editor.exe",
"RunServerHealthMonitoringFrequencyInSeconds": 30,
"PathToUProject": "C:\\OWS\\OpenWorldStarterPlugin\\OpenWorldStarter.uproject",
"UseServerLog": true,
"UseNoSteam": true,
"OtherCustomFlags": ""
},
"OWSAPIPathConfig": {
"InternalPublicApiURL": "http://localhost:44302/",
"InternalInstanceManagementApiURL": "http://localhost:44328/",
"InternalCharacterPersistenceApiURL": "http://localhost:44323/"
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:8181"
}
}
}
}