mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 17:16:22 +02:00
34 lines
574 B
JSON
34 lines
574 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"Kestrel": {
|
|
"Endpoints": {
|
|
"Http": {
|
|
"Url": "http://*:5000"
|
|
},
|
|
"Https": {
|
|
"Url": "https://*:5001"
|
|
}
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Authentication": {
|
|
"ApiKeys": [
|
|
{
|
|
"Key": "dev-api-key-1",
|
|
"Description": "Dev client 1",
|
|
"Enabled": true
|
|
},
|
|
{
|
|
"Key": "dev-api-key-2",
|
|
"Description": "Dev client 2",
|
|
"Enabled": false
|
|
}
|
|
]
|
|
}
|
|
}
|