Update to NetCore 3.1, added Kestrel for REST api and few basic endpoints.

This commit is contained in:
Karolis2011
2020-01-04 14:42:57 +02:00
parent 402d1943c1
commit 0e06afd5e6
8 changed files with 171 additions and 53 deletions

View File

@@ -1,20 +1,36 @@
{
"Logging": {
"LogLevel": {
"Default": "Debug"
"Default": "Debug",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"GRPC": {
"Port": 5001,
"Port": 5002,
"Host": "0.0.0.0"
},
"Kestrel": {
"Limits": {
"MaxConcurrentConnections": 100,
"MaxConcurrentUpgradedConnections": 100
},
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:5000"
},
"Https": {
"Url": "https://0.0.0.0:5001"
}
}
},
"Repository": {
"URL": "https://github.com/Aurorastation/Aurora.3.git",
"Branch": "",
"Author": {
"Name": "Aurora Server System",
"Email": "ass@aurorastation.org"
}
},
"Credentials": {
"github.com/Aurorastation/Aurora.3.git": {}
}
@@ -22,7 +38,7 @@
"BYOND": {
"Version": {
"Major": 512,
"Minor": 1467
"Minor": 1488
},
"Dir": "BYOND"
},