Update frontend/minattest-app-host/appsettings.json
Build & Push MinAttest / build-and-push (push) Has been cancelled

This commit is contained in:
2025-11-27 14:21:15 +00:00
parent b50f928318
commit 1161717f74
+41 -41
View File
@@ -1,42 +1,42 @@
{ {
"Serilog": { "Serilog": {
"Using": [ "Serilog.Sinks.Console" ], "Using": [ "Serilog.Sinks.Console" ],
"MinimumLevel": { "MinimumLevel": {
"Default": "Verbose", "Default": "Verbose",
"Override": { "Override": {
"Microsoft": "Information", "Microsoft": "Information",
"System": "Information" "System": "Information"
} }
}, },
"WriteTo": [ "WriteTo": [
{ {
"Name": "Console", "Name": "Console",
"Args": { "Args": {
"theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Literate, Serilog.Sinks.Console", "theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Literate, Serilog.Sinks.Console",
"outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}|{RequestId}] {Message:lj} <s:{SourceContext}>{NewLine}{Exception}" "outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}|{RequestId}] {Message:lj} <s:{SourceContext}>{NewLine}{Exception}"
} }
} }
], ],
"Enrich": [ "FromLogContext" ] "Enrich": [ "FromLogContext" ]
}, },
"ReverseProxy": { "ReverseProxy": {
"Routes": { "Routes": {
"userApiRoute": { "userApiRoute": {
"ClusterId": "clusterUser", "ClusterId": "clusterUser",
"Match": { "Match": {
"Path": "/api/{**catch-all}" "Path": "/api/{**catch-all}"
} }
} }
}, },
"Clusters": { "Clusters": {
"clusterUser": { "clusterUser": {
"Destinations": { "Destinations": {
"destination1": { "destination1": {
"Address": "https://localhost:7172/" "Address": "http://backend-api:8080/"
} }
} }
} }
} }
}, },
"AllowedHosts": "*" "AllowedHosts": "*"
} }