Files
RemoteExec/RemoteExec.Server/appsettings.Development.json
T

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
}
]
}
}