forked from Dartanlla/OWS
-
Notifications
You must be signed in to change notification settings - Fork 5
/
appsettings.json
54 lines (51 loc) · 1.71 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
{
"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://host.docker.internal:50000",
"batchFormatter": "Serilog.Sinks.Http.BatchFormatters.ArrayBatchFormatter, Serilog.Sinks.Http",
"textFormatter": "Serilog.Formatting.Elasticsearch.ElasticsearchJsonFormatter, Serilog.Formatting.Elasticsearch"
}
}
],
"Enrich": [ "FromLogContext", "WithExceptionDetails", "WithMachineName", "WithCorrelationId", "WithClientIp", "WithClientAgent" ],
"Properties": {
"Application": "OWSPublicApi"
}
},
"OWSPublicAPIConfig": {
"SecondsToWaitForServerSpinUp": 45,
"SecondsToWaitInBetweenSpinUpPolling": 2,
"SecondsToWaitBeforeFirstPollForSpinUp": 5
},
"OWSAPIPathConfig": {
"InternalPublicApiURL": "http://host.docker.internal:44302/",
"InternalInstanceManagementApiURL": "http://host.docker.internal:44328/",
"InternalCharacterPersistenceApiURL": "http://host.docker.internal:44323/"
},
"OWSStorageConfig": {
"OWSDBBackend": "mssql",
"OWSDBConnectionString": "Server=host.docker.internal;Database=OpenWorldServer;User Id=SA;Password=yourStrong(!)Password;ConnectRetryCount=0"
},
"ExternalLoginProviderConfig": {
"EpicOnlineServices": {
"ClientId": "",
"ClientSecret": "",
"DeploymentId": "",
"RedirectUri": ""
}
}
}