Fix router-gateway debug logging from mounted config file
router-gateway-local.json had Logging.LogLevel.StellaOps set to Debug, overriding the compose env var Information setting. Fixed in both local and reverseproxy config variants. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -6,6 +6,15 @@
|
||||
"AllowAnonymous": true,
|
||||
"EnableLegacyHeaders": true,
|
||||
"AllowScopeHeader": false,
|
||||
"ApprovedAuthPassthroughPrefixes": [
|
||||
"/connect",
|
||||
"/console",
|
||||
"/authority",
|
||||
"/doctor",
|
||||
"/api",
|
||||
"/policy/shadow",
|
||||
"/policy/simulations"
|
||||
],
|
||||
"Authority": {
|
||||
"Issuer": "https://authority.stella-ops.local/",
|
||||
"RequireHttpsMetadata": false,
|
||||
@@ -22,6 +31,12 @@
|
||||
"TranslatesTo": "http://jobengine.stella-ops.local/api/v1/release-orchestrator",
|
||||
"PreserveAuthHeaders": true
|
||||
},
|
||||
{
|
||||
"Type": "ReverseProxy",
|
||||
"Path": "/api/v1/approvals",
|
||||
"TranslatesTo": "http://jobengine.stella-ops.local/api/v1/approvals",
|
||||
"PreserveAuthHeaders": true
|
||||
},
|
||||
{
|
||||
"Type": "ReverseProxy",
|
||||
"Path": "/api/v1/vex",
|
||||
@@ -211,7 +226,7 @@
|
||||
{
|
||||
"Type": "ReverseProxy",
|
||||
"Path": "/api/v1/watchlist",
|
||||
"TranslatesTo": "http://attestor.stella-ops.local/api/v1/watchlist",
|
||||
"TranslatesTo": "http://attestor.stella-ops.local/api/v1/watchlist",
|
||||
"PreserveAuthHeaders": true
|
||||
},
|
||||
{
|
||||
@@ -334,11 +349,17 @@
|
||||
"TranslatesTo": "http://policy-gateway.stella-ops.local/api/cvss",
|
||||
"PreserveAuthHeaders": true
|
||||
},
|
||||
{
|
||||
"Type": "ReverseProxy",
|
||||
"Path": "/policy/simulations",
|
||||
"TranslatesTo": "http://policy-gateway.stella-ops.local/policy/simulations",
|
||||
"PreserveAuthHeaders": true
|
||||
},
|
||||
{
|
||||
"Type": "ReverseProxy",
|
||||
"Path": "/policy/shadow",
|
||||
"TranslatesTo": "http://policy-gateway.stella-ops.local/policy/shadow",
|
||||
"PreserveAuthHeaders": false
|
||||
"PreserveAuthHeaders": true
|
||||
},
|
||||
{
|
||||
"Type": "ReverseProxy",
|
||||
@@ -788,9 +809,9 @@
|
||||
},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Microsoft.AspNetCore.Authentication": "Debug",
|
||||
"Microsoft.IdentityModel": "Debug",
|
||||
"StellaOps": "Debug"
|
||||
"Microsoft.AspNetCore.Authentication": "Information",
|
||||
"Microsoft.IdentityModel": "Information",
|
||||
"StellaOps": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user