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

46 lines
908 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:5000"
},
"Https": {
"Url": "https://*:5001"
}
}
},
"AllowedHosts": "*",
"Execution": {
"ExecutionEnvironment": "DockerContainer"
},
"DockerExecution": {
"DockerHost": null,
"WorkerImageName": "remoteexec-worker:latest",
"ContainerTimeoutSeconds": 300,
"ContainerMemoryLimitMb": 512,
"ContainerCpuShares": 1024,
"DisableNetwork": true,
"ReadOnlyFilesystem": false
},
"Authentication": {
"ApiKeys": [
{
"Key": "dev-api-key-1",
"Description": "Dev client 1",
"Enabled": true
},
{
"Key": "dev-api-key-2",
"Description": "Dev client 2",
"Enabled": false
}
]
}
}