void.cat/VoidCat/appsettings.compose.json

33 lines
979 B
JSON
Raw Permalink Normal View History

2022-06-15 20:53:52 +00:00
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
2023-12-21 23:21:19 +00:00
"Microsoft.EntityFrameworkCore": "Warning"
2022-06-15 20:53:52 +00:00
}
},
"Settings": {
2023-12-21 23:21:19 +00:00
"CorsOrigins": [],
2022-06-15 20:53:52 +00:00
"VirusScanner": {
"ClamAV": {
"Endpoint": "tcp://clamav:3310",
"MaxStreamSize": 100000000000
}
},
2023-12-21 23:21:19 +00:00
"SiteUrl": "http://localhost:8001",
2022-06-15 20:53:52 +00:00
"Redis": "redis",
2023-12-22 10:59:27 +00:00
"Postgres": "User ID=postgres;Password=postgres;Database=void;Pooling=true;Host=postgres:5432",
"Prometheus": {
"Url": "http://prometheus:9090",
"EgressQuery": "increase(egress{{file=\"{0}\"}}[1d])"
},
"MetadataStore": "postgres",
"DefaultFileStore": "local-disk",
"JwtSettings":{
"Issuer": "http://localhost:8001",
"Key": "my_very_strong_secret_key"
}
2022-06-15 20:53:52 +00:00
}
}