Files
myAi/web/appsettings.json
T
claude fc2dd721e4
Build and Push Docker Images / build (push) Successful in 29s
Initial commit
2026-05-02 21:31:31 +03:00

26 lines
450 B
JSON

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