Files
myAi/web/appsettings.json
claude aa79b422e4
Build and Push Docker Images / build (push) Successful in 31s
Changes
2026-05-20 14:25:07 +03:00

30 lines
489 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Site": {
"Mode": "Normal"
},
"ReverseProxy": {
"Routes": {
"apiRoute": {
"ClusterId": "apiCluster",
"Match": { "Path": "/api/{**catch-all}" }
}
},
"Clusters": {
"apiCluster": {
"Destinations": {
"api": { "Address": "http://myai-api:8080/" }
}
}
}
}
}