-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathappsettings.json
More file actions
60 lines (60 loc) · 2.13 KB
/
appsettings.json
File metadata and controls
60 lines (60 loc) · 2.13 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Warning",
"SuperSocket": "Warning",
"Orleans": "Warning",
"Turbo": "Debug",
"Turbo.Networking.Package.PackageHandler": "Warning",
"Turbo.Networking.Package.PackageEncoder": "Warning"
},
"Console": {
"FormatterName": "turbo"
},
"TurboConsole": {
"TimestampFormat": "yyyy-MM-dd HH:mm:ss.fff",
"UseUtcTimestamp": false,
"SingleLine": true,
"IncludeCategory": true,
"TrimCategoryDepth": 1,
"UseAnsiColor": true,
"IncludeScopes": false
}
},
"serverOptions": {
"TcpServer": {
"name": "TcpServer",
"listeners": [
{
"ip": "127.0.0.1",
"port": 30000
}
]
},
"WebSocketServer": {
"name": "WebSocketServer",
"listeners": [
{
"ip": "127.0.0.1",
"port": 30001
}
]
}
},
"Turbo": {
"Database": {
"ConnectionString": "server=127.0.0.1;user=root;password=Test12345;database=turbodb",
"LoggingEnabled": true
},
"Game": {},
"Networking": {},
"Crypto": {
"KeySize": "3",
"PublicKey": "86851DD364D5C5CECE3C883171CC6DDC5760779B992482BD1E20DD296888DF91B33B936A7B93F06D29E8870F703A216257DEC7C81DE0058FEA4CC5116F75E6EFC4E9113513E45357DC3FD43D4EFAB5963EF178B78BD61E81A14C603B24C8BCCE0A12230B320045498EDC29282FF0603BC7B7DAE8FC1B05B52B2F301A9DC783B7",
"PrivateKey": "59ae13e243392e89ded305764bdd9e92e4eafa67bb6dac7e1415e8c645b0950bccd26246fd0d4af37145af5fa026c0ec3a94853013eaae5ff1888360f4f9449ee023762ec195dff3f30ca0b08b8c947e3859877b5d7dced5c8715c58b53740b84e11fbc71349a27c31745fcefeeea57cff291099205e230e0c7c27e8e1c0512b",
"EnableServerToClientEncryption": true
}
}
}